using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayMsaasMediarecogMmtcaftscvGoodsApplyModel Data Structure. /// [Serializable] public class AlipayMsaasMediarecogMmtcaftscvGoodsApplyModel : AopObject { /// /// 商品上新批次号 /// [XmlElement("batch_num")] public string BatchNum { get; set; } /// /// 上新商品信息列表 /// [XmlArray("goods_infos")] [XmlArrayItem("apply_goods_info")] public List GoodsInfos { get; set; } /// /// 视觉货柜机型ID /// [XmlElement("machine_type_id")] public string MachineTypeId { get; set; } } }