66 lines
1.7 KiB
C#
66 lines
1.7 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// MybankCreditLoantradeRepayCustApplyModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class MybankCreditLoantradeRepayCustApplyModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请还款费用(提前还款费除外)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("apply_repay_fee")]
|
|||
|
|
public string ApplyRepayFee { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请还款利息
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("apply_repay_int")]
|
|||
|
|
public string ApplyRepayInt { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 提前还款费
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("apply_repay_pre_fee")]
|
|||
|
|
public string ApplyRepayPreFee { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 申请还款本金
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("apply_repay_prin")]
|
|||
|
|
public string ApplyRepayPrin { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 扩展字段
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ext_data")]
|
|||
|
|
public string ExtData { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 银行参与者id,是在网商银行创建会员后生成的id,网商银行会员的唯一标识
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ip_id")]
|
|||
|
|
public string IpId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 银行参与者角色id,是在网商银行创建会员后生成的角色id,网商银行会员角色的唯一标识
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ip_role_id")]
|
|||
|
|
public string IpRoleId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 贷款合约编号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("loan_ar_no")]
|
|||
|
|
public string LoanArNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 请求流水号,用于幂等控制.以"ipRoleId_"开头
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("request_id")]
|
|||
|
|
public string RequestId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|