using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataBillTransferaccountbookQueryModel Data Structure. /// [Serializable] public class AlipayDataBillTransferaccountbookQueryModel : AopObject { /// /// 协议号 /// [XmlElement("agreement_no")] public string AgreementNo { get; set; } /// /// 充值、转账、提现流水业务时间的结束范围。与起始时间间隔不超过31天。查询结果为起始时间至结束时间的左闭右开区间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 分页号,从1开始 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 分页大小1000-2000,默认2000 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 充值、转账、提现流水业务时间的起始范围 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 子账本号,或者子账本名称。模糊查询 /// [XmlElement("store_no")] public string StoreNo { get; set; } /// /// 转账类型:充值-DEPOSIT,提现-WITHDRAW,转账-TRANSFER。 /// [XmlElement("type")] public string Type { get; set; } } }