using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiRetailWmsGoodsQueryModel Data Structure. /// [Serializable] public class KoubeiRetailWmsGoodsQueryModel : AopObject { /// /// 根据状态查询货品 EFFECTIVE:生效 INVALID :无效 /// [XmlElement("biz_status")] public string BizStatus { get; set; } /// /// 类目ID /// [XmlElement("category_id")] public string CategoryId { get; set; } /// /// 货品编码 /// [XmlElement("goods_code")] public string GoodsCode { get; set; } /// /// 根据货品前缀名称查询 /// [XmlElement("goods_name")] public string GoodsName { get; set; } /// /// 操作上下文 /// [XmlElement("operate_context")] public OperateContext OperateContext { get; set; } /// /// 页码,分页参数,当以 goods_code为查询条件时不用传,默认1 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 页面大小,分页参数,当以goods_code为查询条件时不用传,默认20 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 生产厂商ID /// [XmlElement("producer_id")] public string ProducerId { get; set; } /// /// 供应商ID /// [XmlElement("supplier_id")] public string SupplierId { get; set; } } }