using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiRetailWmsBatchinventoryQueryModel Data Structure. /// [Serializable] public class KoubeiRetailWmsBatchinventoryQueryModel : AopObject { /// /// 货品编码列表 /// [XmlArray("goods_code_list")] [XmlArrayItem("string")] public List GoodsCodeList { get; set; } /// /// 货品类型,ZP("正品"),CC("残次"),JS("机损"), XS("箱损"),ZT("在途库存") /// [XmlElement("inventory_type")] public string InventoryType { get; set; } /// /// 仓库编码 /// [XmlElement("warehouse_code")] public string WarehouseCode { get; set; } } }