NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataBillTransferaccou...

55 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}