using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiCateringKbcodeCreateModel Data Structure. /// [Serializable] public class KoubeiCateringKbcodeCreateModel : AopObject { /// /// 口碑码绑定的门店或者桌号信息列表 /// [XmlArray("bind_info_list")] [XmlArrayItem("kb_code_bind_info_v_o")] public List BindInfoList { get; set; } /// /// 请求流水ID,用于幂等控制 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 物料模板(可以不填,系统会根据码类型默认一个模板) /// [XmlElement("stuff_template")] public string StuffTemplate { get; set; } /// /// 生成码的类型(桌码:TABLE_PASTER,门店码:DOOR_PASTER) /// [XmlElement("stuff_type")] public string StuffType { get; set; } } }