using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiRetailWmsGoodssafetyinventoryBatchqueryModel Data Structure. /// [Serializable] public class KoubeiRetailWmsGoodssafetyinventoryBatchqueryModel : AopObject { /// /// 货品编码,限制最大查询数量1000 /// [XmlArray("goods_codes")] [XmlArrayItem("string")] public List GoodsCodes { get; set; } /// /// 仓库编码 /// [XmlElement("warehouse_code")] public string WarehouseCode { get; set; } } }