using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KoubeiAdvertCommissionChannelBatchqueryModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionChannelBatchqueryModel : AopObject
{
///
/// 页码
///
[JsonProperty("page_index")]
public string PageIndex { get; set; }
///
/// 每页数量
///
[JsonProperty("page_size")]
public string PageSize { get; set; }
}
}