NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailWmsWarehouseQue...

55 lines
1.6 KiB
C#
Raw Permalink 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>
/// KoubeiRetailWmsWarehouseQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailWmsWarehouseQueryModel : AopObject
{
/// <summary>
/// 城市编码国标码与归属人ID查询配合使用
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 操作上下文
/// </summary>
[XmlElement("operate_context")]
public OperateContext OperateContext { get; set; }
/// <summary>
/// 仓库的归属人类型SUPPLIER供货商的仓库/PARTNER商户的仓库
/// </summary>
[XmlElement("own_type")]
public string OwnType { get; set; }
/// <summary>
/// 仓库的归属人ID、与仓库ID选择一个作为查询条件
/// </summary>
[XmlElement("owner_id")]
public string OwnerId { get; set; }
/// <summary>
/// 页码分页参数与归属人ID查询配合使用
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 每页大小分页参数与归属人ID查询配合使用
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 仓库编码、与归属人ID选择一个作为查询条件
/// </summary>
[XmlElement("warehouse_code")]
public string WarehouseCode { get; set; }
}
}