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

90 lines
2.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>
/// InstallmentRepayPlan Data Structure.
/// </summary>
[Serializable]
public class InstallmentRepayPlan : AopObject
{
/// <summary>
/// 是否是当期 ?? 默认值为不是当期计划。如果合约最后一期计划都已经逾期就不再存在当期计划合约下所有计划明细的该值都为false
/// </summary>
[JsonProperty("cur_term")]
public bool CurTerm { get; set; }
/// <summary>
/// 当期已还利息
/// </summary>
[JsonProperty("paid_int_bal")]
public string PaidIntBal { get; set; }
/// <summary>
/// 当期已还本金
/// </summary>
[JsonProperty("paid_prin_bal")]
public string PaidPrinBal { 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_nom_int")]
public string TermNomInt { get; set; }
/// <summary>
/// 当期本金
/// </summary>
[JsonProperty("term_nom_prin")]
public string TermNomPrin { get; set; }
/// <summary>
/// 当期已还利息罚息
/// </summary>
[JsonProperty("term_ovd_int")]
public string TermOvdInt { get; set; }
/// <summary>
/// 当期利息罚息
/// </summary>
[JsonProperty("term_ovd_int_pen_int")]
public string TermOvdIntPenInt { get; set; }
/// <summary>
/// 当期已还本金罚息
/// </summary>
[JsonProperty("term_ovd_prin")]
public string TermOvdPrin { get; set; }
/// <summary>
/// 当期本金罚息
/// </summary>
[JsonProperty("term_ovd_prin_pen_int")]
public string TermOvdPrinPenInt { get; set; }
/// <summary>
/// 本期开始日
/// </summary>
[JsonProperty("term_start_date")]
public string TermStartDate { get; set; }
}
}