using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiAdvertCommissionChannelBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertCommissionChannelBatchqueryModel : AopObject { /// /// 页码 /// [XmlElement("page_index")] public string PageIndex { get; set; } /// /// 每页数量 /// [XmlElement("page_size")] public string PageSize { get; set; } } }