NewGaoKaoApi/PaymentSDK/AliPay/Domain/PaymentSchedule.cs

67 lines
1.9 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// PaymentSchedule Data Structure.
/// </summary>
[Serializable]
public class PaymentSchedule : AopObject
{
/// <summary>
/// 还款日
/// </summary>
[XmlElement("date")]
public string Date { get; set; }
/// <summary>
/// 已还利息总和单位为元小数点保留2位
/// </summary>
[XmlElement("repaid_interest_total")]
public string RepaidInterestTotal { get; set; }
/// <summary>
/// 已还罚息总和单位为元小数点保留2位
/// </summary>
[XmlElement("repaid_penalty_total")]
public string RepaidPenaltyTotal { get; set; }
/// <summary>
/// 已还本金总和单位为元小数点保留2位
/// </summary>
[XmlElement("repaid_principal_total")]
public string RepaidPrincipalTotal { get; set; }
/// <summary>
/// 期初时间
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 期次
/// </summary>
[XmlElement("term")]
public long Term { get; set; }
/// <summary>
/// 应还利息总和单位为元小数点保留2位
/// </summary>
[XmlElement("unpaid_interest_total")]
public string UnpaidInterestTotal { get; set; }
/// <summary>
/// 应还罚息总和单位为元小数点保留2位
/// </summary>
[XmlElement("unpaid_penalty_total")]
public string UnpaidPenaltyTotal { get; set; }
/// <summary>
/// 应还本金总和单位为元小数点保留2位
/// </summary>
[XmlElement("unpaid_principal_total")]
public string UnpaidPrincipalTotal { get; set; }
}
}