NewGaoKaoApi/PaymentSDK/AliPay/Domain/JfExportInstBillModel.cs

67 lines
1.7 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>
/// JfExportInstBillModel Data Structure.
/// </summary>
[Serializable]
public class JfExportInstBillModel : AopObject
{
/// <summary>
/// 账单金额单位为RMB元。
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 余额单位为RMB元。
/// </summary>
[XmlElement("balance")]
public string Balance { get; set; }
/// <summary>
/// 账期
/// </summary>
[XmlElement("bill_date")]
public string BillDate { get; set; }
/// <summary>
/// 滞纳金单位为RMB元。
/// </summary>
[XmlElement("bill_fines")]
public string BillFines { get; set; }
/// <summary>
/// 户号
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 机构流水号
/// </summary>
[XmlElement("inst_bill_no")]
public string InstBillNo { get; set; }
/// <summary>
/// 账单拥有者姓名
/// </summary>
[XmlElement("owner_name")]
public string OwnerName { get; set; }
/// <summary>
/// 唯一标识,每次查询均保证唯一性,但是不保证幂等性
/// </summary>
[XmlElement("uniq_id")]
public string UniqId { get; set; }
}
}