using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiCateringDishEstimatedSyncModel Data Structure. /// [Serializable] public class KoubeiCateringDishEstimatedSyncModel : AopObject { /// /// 菜品估清类型,estimated表示菜品估清 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 菜品估清对象列表 /// [XmlArray("kbdish_estimated_list")] [XmlArrayItem("kbdish_estimated_info")] public List KbdishEstimatedList { get; set; } /// /// 同步类型,update会覆盖更新,目前只支持update /// [XmlElement("syn_type")] public string SynType { get; set; } } }