using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// DrawndnVo Data Structure. /// [Serializable] public class DrawndnVo : AopObject { /// /// 实收利息,单位为元,小数点保留2位 /// [XmlElement("actual_collected_interest")] public string ActualCollectedInterest { get; set; } /// /// 贷款余额(本金余额) /// [XmlElement("balance")] public string Balance { get; set; } /// /// 已收本息,单位为元,小数点保留2位 /// [XmlElement("collected_principal_and_interest")] public string CollectedPrincipalAndInterest { get; set; } /// /// 授信编号 /// [XmlElement("credit_no")] public string CreditNo { get; set; } /// /// 支用日,这里代表的是客户这笔支用放款成功日期,如果支用还在放款中或者支用放款失败等,则该值为空 /// [XmlElement("drawndn_date")] public string DrawndnDate { get; set; } /// /// 支用编号,代表一笔支用的唯一编号 /// [XmlElement("drawndn_no")] public string DrawndnNo { get; set; } /// /// 到期日 /// [XmlElement("due_date")] public string DueDate { get; set; } /// /// 五级分类,值类型:NORMAL(正常)、ATTENTION(关注)、SUBPRIME(次级)、DOUBTFUL(可疑)、LOSSES(损失) /// [XmlElement("five_tier_classification")] public string FiveTierClassification { get; set; } /// /// 正常利息,单位为元,小数点保留2位 /// [XmlElement("interest")] public string Interest { get; set; } /// /// 年利率,小数点保留2位 /// [XmlElement("interest_rate")] public string InterestRate { get; set; } /// /// 贷款发放额,单位为元,小数点保留2位 /// [XmlElement("lending_amount")] public string LendingAmount { get; set; } /// /// 当前逾期期次 /// [XmlElement("overduce_terms")] public long OverduceTerms { get; set; } /// /// 当前逾期天数 /// [XmlElement("overdue_days")] public long OverdueDays { get; set; } /// /// 逾期利息,单位为元,小数点保留2位 /// [XmlElement("overdue_interest")] public string OverdueInterest { get; set; } /// /// 逾期利息罚息,单位为元,小数点保留2位 /// [XmlElement("overdue_interest_penalty")] public string OverdueInterestPenalty { get; set; } /// /// 逾期本金,单位为元,小数点保留2位 /// [XmlElement("overdue_principal")] public string OverduePrincipal { get; set; } /// /// 逾期本金罚息,单位为元,小数点保留2位 /// [XmlElement("overdue_principal_penalty")] public string OverduePrincipalPenalty { get; set; } /// /// 支用状态 ,值类型:INIT(初始),LENDING(发放中),NORMAL(正常),OVD(逾期), CLEAR(结清),OFF(核销), LENDFAIL(发放失败) /// [XmlElement("status")] public string Status { get; set; } } }