NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataBillAccountbooker...

37 lines
1.1 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>
/// AlipayDataBillAccountbookereceiptApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataBillAccountbookereceiptApplyModel : AopObject
{
/// <summary>
/// 协议号
/// </summary>
[XmlElement("agreement_no")]
public string AgreementNo { get; set; }
/// <summary>
/// 明细凭证传入流水号转账接口查询结果。汇总凭证传入起止时间格式yyyy-MM-dd_yyyy-MM-dd。
/// </summary>
[XmlElement("key")]
public string Key { get; set; }
/// <summary>
/// 子账本号,或者子账本名称。模糊查询
/// </summary>
[XmlElement("store_no")]
public string StoreNo { get; set; }
/// <summary>
/// 申请的类型。可传入FUND_PLATFORM_DETAIL - 资金明细证明FUND_PLATFORM_SUM - 资金汇总证明
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}