Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PaymentSchedule.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

66 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// PaymentSchedule Data Structure.
/// </summary>
[Serializable]
public class PaymentSchedule : AopObject
{
/// <summary>
/// 还款日
/// </summary>
[JsonProperty("date")]
public string Date { get; set; }
/// <summary>
/// 已还利息总和单位为元小数点保留2位
/// </summary>
[JsonProperty("repaid_interest_total")]
public string RepaidInterestTotal { get; set; }
/// <summary>
/// 已还罚息总和单位为元小数点保留2位
/// </summary>
[JsonProperty("repaid_penalty_total")]
public string RepaidPenaltyTotal { get; set; }
/// <summary>
/// 已还本金总和单位为元小数点保留2位
/// </summary>
[JsonProperty("repaid_principal_total")]
public string RepaidPrincipalTotal { get; set; }
/// <summary>
/// 期初时间
/// </summary>
[JsonProperty("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 期次
/// </summary>
[JsonProperty("term")]
public long Term { get; set; }
/// <summary>
/// 应还利息总和单位为元小数点保留2位
/// </summary>
[JsonProperty("unpaid_interest_total")]
public string UnpaidInterestTotal { get; set; }
/// <summary>
/// 应还罚息总和单位为元小数点保留2位
/// </summary>
[JsonProperty("unpaid_penalty_total")]
public string UnpaidPenaltyTotal { get; set; }
/// <summary>
/// 应还本金总和单位为元小数点保留2位
/// </summary>
[JsonProperty("unpaid_principal_total")]
public string UnpaidPrincipalTotal { get; set; }
}
}