using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiAdvertCommissionAdvchannelBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertCommissionAdvchannelBatchqueryModel : AopObject { /// /// 广告ID /// [JsonProperty("adv_id")] public string AdvId { get; set; } /// /// 当前页码 /// [JsonProperty("page_index")] public string PageIndex { get; set; } /// /// 每页记录数,默认10,最大100 /// [JsonProperty("page_size")] public string PageSize { get; set; } } }