忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,66 +0,0 @@
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; }
}
}