using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// RepaymentRecords Data Structure.
///
[Serializable]
public class RepaymentRecords : AopObject
{
///
/// 交易时间
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 正常本金利息,单位为元,小数点保留2位
///
[XmlElement("interest")]
public string Interest { 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; }
///
/// 正常本金,单位为元,小数点保留2位
///
[XmlElement("principal")]
public string Principal { get; set; }
///
/// 备注
///
[XmlElement("remarks")]
public string Remarks { get; set; }
///
/// 交易总金额
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}