using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BudgetVO Data Structure. /// [Serializable] public class BudgetVO : AopObject { /// /// 应还总金额 = 正常本金+逾期本金+正常利息+逾期利息+逾期本金罚息+逾期利息罚息 /// [XmlElement("need_repay_total")] public string NeedRepayTotal { get; set; } /// /// 正常利息 /// [XmlElement("nom_int")] public string NomInt { get; set; } /// /// 正常本金 /// [XmlElement("nom_prin")] public string NomPrin { get; set; } /// /// 逾期利息 /// [XmlElement("ovd_int")] public string OvdInt { get; set; } /// /// 逾期利息罚息 /// [XmlElement("ovd_int_pen_int")] public string OvdIntPenInt { get; set; } /// /// 逾期本金 /// [XmlElement("ovd_prin")] public string OvdPrin { get; set; } /// /// 逾期本金罚息 /// [XmlElement("ovd_prin_pen_int")] public string OvdPrinPenInt { get; set; } } }