NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandMerchantSt...

37 lines
1.4 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>
/// AntMerchantExpandMerchantStorelistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandMerchantStorelistQueryModel : AopObject
{
/// <summary>
/// 可选: true / false 。 当is_include_cognate = true 指定pid为空 查询商户下所有pid的店铺 当is_include_cognate = true 指定pid不为空时查询指定pid的店铺 当is_include_cognate = false 指定pid为空时 查询当前商pid的店铺 当is_include_cognate = false 指定pid不为空时查询指定pid的店铺
/// </summary>
[XmlElement("is_include_cognate")]
public string IsIncludeCognate { get; set; }
/// <summary>
/// 页码必须为大于0的整数 1表示第一页2表示第2页依次类推。
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页记录条数必须为大于0的整数最大值为30
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 指定的商户pid如果指定 只返回此pid的店铺信息。(此pid必须是商户自己的)
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
}
}