using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingCampaignRuleRulelistQueryModel Data Structure. /// [Serializable] public class AlipayMarketingCampaignRuleRulelistQueryModel : AopObject { /// /// 签约商户下属子机构唯一编号 /// [XmlElement("mpid")] public string Mpid { get; set; } /// /// 页码,从1开始 /// [XmlElement("pageno")] public string Pageno { get; set; } /// /// 每页大小 /// [XmlElement("pagesize")] public string Pagesize { get; set; } } }