NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailWmsInventoryQue...

55 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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