using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiRetailKbcodeCreateModel Data Structure. /// [Serializable] public class KoubeiRetailKbcodeCreateModel : AopObject { /// /// 口碑码绑定的附加信息列表,最大数量150 /// [XmlArray("code_info_list")] [XmlArrayItem("retail_kbcode_create_vo")] public List CodeInfoList { get; set; } /// /// 物料模板(口碑码的背景图,目前仅支持:RETAIL_PASTER_296_320) /// [XmlElement("code_template")] public string CodeTemplate { get; set; } /// /// 生成码的类型(当前仅支持品牌商促销员码:KOUBEI_SALESMAN_CODEC) /// [XmlElement("code_type")] public string CodeType { get; set; } /// /// 请求流水ID,可用于幂等控制,建议使用UUID做幂等控制 /// [XmlElement("request_id")] public string RequestId { get; set; } } }