Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

66 lines
1.5 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// JfExportInstBillModel Data Structure.
/// </summary>
[Serializable]
public class JfExportInstBillModel : AopObject
{
/// <summary>
/// 账单金额单位为RMB元。
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 余额单位为RMB元。
/// </summary>
[JsonProperty("balance")]
public string Balance { get; set; }
/// <summary>
/// 账期
/// </summary>
[JsonProperty("bill_date")]
public string BillDate { get; set; }
/// <summary>
/// 滞纳金单位为RMB元。
/// </summary>
[JsonProperty("bill_fines")]
public string BillFines { get; set; }
/// <summary>
/// 户号
/// </summary>
[JsonProperty("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 拓展字段json串(key-value对)
/// </summary>
[JsonProperty("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 机构流水号
/// </summary>
[JsonProperty("inst_bill_no")]
public string InstBillNo { get; set; }
/// <summary>
/// 账单拥有者姓名
/// </summary>
[JsonProperty("owner_name")]
public string OwnerName { get; set; }
/// <summary>
/// 唯一标识,每次查询均保证唯一性,但是不保证幂等性
/// </summary>
[JsonProperty("uniq_id")]
public string UniqId { get; set; }
}
}