using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RepayPlanTermVO Data Structure.
///
[Serializable]
public class RepayPlanTermVO : AopObject
{
///
/// 当期利息
///
[XmlElement("int_bal")]
public string IntBal { get; set; }
///
/// 当期利息罚息
///
[XmlElement("ovd_int_penalty_bal")]
public string OvdIntPenaltyBal { get; set; }
///
/// 当期本金罚息
///
[XmlElement("ovd_prin_penalty_bal")]
public string OvdPrinPenaltyBal { get; set; }
///
/// 当期已还利息
///
[XmlElement("paid_int_amt")]
public string PaidIntAmt { get; set; }
///
/// 当期已还利息罚息
///
[XmlElement("paid_ovd_int_penalty_amt")]
public string PaidOvdIntPenaltyAmt { get; set; }
///
/// 当期已还本金罚息
///
[XmlElement("paid_ovd_prin_penalty_amt")]
public string PaidOvdPrinPenaltyAmt { get; set; }
///
/// 当期已还本金
///
[XmlElement("paid_prin_amt")]
public string PaidPrinAmt { get; set; }
///
/// 当期本金
///
[XmlElement("prin_bal")]
public string PrinBal { get; set; }
///
/// 当期应还总额=当期本金+当期利息+当期本金罚息+当期利息罚息
///
[XmlElement("repay_amt_total")]
public string RepayAmtTotal { get; set; }
///
/// 分期状态,取值{NORMAL, OVD, CLEAR}: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; }
}
}