NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailExtitemShopexti...

31 lines
800 B
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>
/// KoubeiRetailExtitemShopextitemQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailExtitemShopextitemQueryModel : AopObject
{
/// <summary>
/// 查询页码表示第几页不传默认1
/// </summary>
[XmlElement("page_no")]
public string PageNo { get; set; }
/// <summary>
/// 分页大小表示每页查询数量不传默认10
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 口碑店铺id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}