using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PreRepayPlanTermVO Data Structure.
///
[Serializable]
public class PreRepayPlanTermVO : AopObject
{
///
/// 当期利息
///
[XmlElement("int_bal")]
public string IntBal { get; set; }
///
/// 当期本金
///
[XmlElement("prin_bal")]
public string PrinBal { get; set; }
///
/// 当期应还总额=当期本金+当期利息
///
[XmlElement("repay_amt_total")]
public string RepayAmtTotal { get; set; }
///
/// 本期到期日,即应还款日期
///
[XmlElement("term_end_date")]
public string TermEndDate { get; set; }
///
/// 期次号
///
[XmlElement("term_no")]
public long TermNo { get; set; }
}
}