using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayMarketingVoucherStockCreateModel Data Structure. /// [Serializable] public class AlipayMarketingVoucherStockCreateModel : AopObject { /// /// 券码列表,商户体系内可兑换使用的券码 /// [XmlArray("entity_list")] [XmlArrayItem("string")] public List EntityList { get; set; } /// /// 外部单据号, 请保持唯一, 如果重复则认为重复请求, 可以使用uuid生成或使用商户自己的单据号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 库存ID, 首次创建请填写空, 追加库存请填原始库存ID /// [XmlElement("stock_id")] public string StockId { get; set; } } }