初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
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; }
}
}