using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayAccountCashpoolBasicQueryModel Data Structure. /// [Serializable] public class AlipayAccountCashpoolBasicQueryModel : AopObject { /// /// 查询条件,资金池名称,不支持模糊查询 /// [XmlElement("cash_pool_name")] public string CashPoolName { get; set; } /// /// 页码 /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 页面大小 /// [XmlElement("page_size")] public long PageSize { get; set; } } }