using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InstallmentRepayPlan Data Structure.
///
[Serializable]
public class InstallmentRepayPlan : AopObject
{
///
/// 是否是当期 ?? 默认值为不是当期计划。如果合约最后一期计划都已经逾期,就不再存在当期计划,合约下所有计划明细的该值都为false
///
[XmlElement("cur_term")]
public bool CurTerm { get; set; }
///
/// 当期已还利息
///
[XmlElement("paid_int_bal")]
public string PaidIntBal { get; set; }
///
/// 当期已还本金
///
[XmlElement("paid_prin_bal")]
public string PaidPrinBal { get; set; }
///
/// 分期状态(NORMAL:正常,OVD:逾期,CLEAR:已结清)
///
[XmlElement("status")]
public string Status { get; set; }
///
/// 本期到期日
///
[XmlElement("term_end_date")]
public string TermEndDate { get; set; }
///
/// 期次号
///
[XmlElement("term_no")]
public long TermNo { get; set; }
///
/// 当期利息
///
[XmlElement("term_nom_int")]
public string TermNomInt { get; set; }
///
/// 当期本金
///
[XmlElement("term_nom_prin")]
public string TermNomPrin { get; set; }
///
/// 当期已还利息罚息
///
[XmlElement("term_ovd_int")]
public string TermOvdInt { get; set; }
///
/// 当期利息罚息
///
[XmlElement("term_ovd_int_pen_int")]
public string TermOvdIntPenInt { get; set; }
///
/// 当期已还本金罚息
///
[XmlElement("term_ovd_prin")]
public string TermOvdPrin { get; set; }
///
/// 当期本金罚息
///
[XmlElement("term_ovd_prin_pen_int")]
public string TermOvdPrinPenInt { get; set; }
///
/// 本期开始日
///
[XmlElement("term_start_date")]
public string TermStartDate { get; set; }
}
}