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