using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// RepaymentRecords Data Structure. /// [Serializable] public class RepaymentRecords : AopObject { /// /// 交易时间 /// [JsonProperty("date")] public string Date { get; set; } /// /// 正常本金利息,单位为元,小数点保留2位 /// [JsonProperty("interest")] public string Interest { get; set; } /// /// 逾期本金利息,单位为元,小数点保留2位 /// [JsonProperty("overdue_interest")] public string OverdueInterest { get; set; } /// /// 逾期利息罚息,单位为元,小数点保留2位 /// [JsonProperty("overdue_interest_penalty")] public string OverdueInterestPenalty { get; set; } /// /// 逾期本金,单位为元,小数点保留2位 /// [JsonProperty("overdue_principal")] public string OverduePrincipal { get; set; } /// /// 逾期本金罚息,单位为元,小数点保留2位 /// [JsonProperty("overdue_principal_penalty")] public string OverduePrincipalPenalty { get; set; } /// /// 正常本金,单位为元,小数点保留2位 /// [JsonProperty("principal")] public string Principal { get; set; } /// /// 备注 /// [JsonProperty("remarks")] public string Remarks { get; set; } /// /// 交易总金额 /// [JsonProperty("total_amount")] public string TotalAmount { get; set; } } }