using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiRetailWmsInventoryQueryModel Data Structure.
///
[Serializable]
public class KoubeiRetailWmsInventoryQueryModel : AopObject
{
///
/// 批次号
///
[XmlElement("batch_code")]
public string BatchCode { get; set; }
///
/// 货品编码
///
[XmlElement("goods_code")]
public string GoodsCode { get; set; }
///
/// 货品类型,ZP("正品"),CC("残次"),JS("机损"), XS("箱损"),ZT("在途库存")
///
[XmlElement("inventory_type")]
public string InventoryType { get; set; }
///
/// 操作人信息
///
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
///
/// 页码(默认1,正整数)
///
[XmlElement("page_no")]
public long PageNo { get; set; }
///
/// 页面大小(最小为1,默认20,最大100)
///
[XmlElement("page_size")]
public long PageSize { get; set; }
///
/// 仓库编码
///
[XmlElement("warehouse_code")]
public string WarehouseCode { get; set; }
}
}