using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiRetailInstanceQueryModel Data Structure. /// [Serializable] public class KoubeiRetailInstanceQueryModel : AopObject { /// /// 当前页码,最小1 /// [JsonProperty("page_num")] public long PageNum { get; set; } /// /// 一次请求返回的数据量,最小1~50整数 /// [JsonProperty("page_size")] public long PageSize { get; set; } } }