Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MybankCreditLoantradeLoanarRepayModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.2 KiB
C#
Raw 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>
/// MybankCreditLoantradeLoanarRepayModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeLoanarRepayModel : AopObject
{
/// <summary>
/// 贷款客户在网商的会员ID
/// </summary>
[JsonProperty("cust_iprole_id")]
public string CustIproleId { get; set; }
/// <summary>
/// 还款日精确到日格式为yyyyMMdd必须是当天
/// </summary>
[JsonProperty("date")]
public string Date { get; set; }
/// <summary>
/// 贷款合约号
/// </summary>
[JsonProperty("loan_ar_no")]
public string LoanArNo { get; set; }
/// <summary>
/// 还款本金金额,单位默认为元,支持小数点两位,为了便于传输用合作方将数值型转换为字符串型
/// </summary>
[JsonProperty("prin_amt")]
public string PrinAmt { get; set; }
/// <summary>
/// 外部流水号格式:日期(8位)+序列号(8位,序列号是数字如00000001必须是16位且符合该格式
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}