初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// LoanChargeInfo Data Structure.
/// </summary>
[Serializable]
public class LoanChargeInfo : AopObject
{
/// <summary>
/// 费用编码
/// </summary>
[JsonProperty("charge_code")]
public string ChargeCode { get; set; }
/// <summary>
/// 费用名称
/// </summary>
[JsonProperty("charge_name")]
public string ChargeName { get; set; }
/// <summary>
/// 分段费率
/// </summary>
[JsonProperty("instal_chrg_rate")]
public InstallmentValue InstalChrgRate { get; set; }
}
}