90 lines
2.4 KiB
C#
90 lines
2.4 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// InstRepayPlan Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class InstRepayPlan : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 是否是当期。 默认值为不是当期计划。如果合约最后一期计划都已经逾期,就不再存在当期计划,合约下所有计划明细的该值都为false
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cur_term")]
|
|||
|
|
public bool CurTerm { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期利息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cur_term_interest")]
|
|||
|
|
public string CurTermInterest { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期利息罚息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cur_term_interest_penalty")]
|
|||
|
|
public string CurTermInterestPenalty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期本金,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cur_term_principal")]
|
|||
|
|
public string CurTermPrincipal { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期本金罚息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("cur_term_principal_penalty")]
|
|||
|
|
public string CurTermPrincipalPenalty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期已还利息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("repaid_interest")]
|
|||
|
|
public string RepaidInterest { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期已还利息罚息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("repaid_interest_penalty")]
|
|||
|
|
public string RepaidInterestPenalty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期已还本金,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("repaid_principal")]
|
|||
|
|
public string RepaidPrincipal { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 当期已还本金罚息,单位:元
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("repaid_principal_penalty")]
|
|||
|
|
public string RepaidPrincipalPenalty { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 分期状态(NORMAL:正常,OVD:逾期,CLEAR:已结清)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("status")]
|
|||
|
|
public string Status { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 本期到期日
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("term_end_date")]
|
|||
|
|
public string TermEndDate { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 期次号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("term_no")]
|
|||
|
|
public long TermNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 本期开始日
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("term_start_date")]
|
|||
|
|
public string TermStartDate { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|