using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringDishDictionarySyncModel Data Structure. /// [Serializable] public class KoubeiCateringDishDictionarySyncModel : AopObject { /// /// 业务字典类型. 定义如下: catetory 分类 ; unit 单位; spec 规格; virtual_catetory 虚拟类目。 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 字典类 /// [XmlElement("kb_dish_dictionary")] public KbdishDictionary KbDishDictionary { get; set; } /// /// 同步类型: add 新增; update 修改; stateChange 状态变更; del删除 (星巴克只支持新增和更新) /// [XmlElement("syn_type")] public string SynType { get; set; } } }