Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/ApproveCreditResult.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

76 lines
2.0 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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ApproveCreditResult Data Structure.
/// </summary>
[Serializable]
public class ApproveCreditResult : AopObject
{
/// <summary>
/// 费用列表,每个费用对象代码一个收费项; 若费用列表为空或空集合,表示不存在费用定价
/// </summary>
[JsonProperty("charge_info_list")]
public List<LoanChargeInfo> ChargeInfoList { get; set; }
/// <summary>
/// 授信金额
/// </summary>
[JsonProperty("credit_amt")]
public string CreditAmt { get; set; }
/// <summary>
/// 授信编号
/// </summary>
[JsonProperty("credit_no")]
public string CreditNo { get; set; }
/// <summary>
/// 授信期限长度,包含单位(年、月、日)
/// </summary>
[JsonProperty("credit_term")]
public string CreditTerm { get; set; }
/// <summary>
/// 授信有效截止日期(日期精度为天,包含截止日)
/// </summary>
[JsonProperty("expire_date")]
public string ExpireDate { get; set; }
/// <summary>
/// 利率
/// </summary>
[JsonProperty("instal_int_rate")]
public List<InstallmentMetaInfo> InstalIntRate { get; set; }
/// <summary>
/// 贷款期限长度,包含单位(年、月、日)
/// </summary>
[JsonProperty("loan_term")]
public string LoanTerm { get; set; }
/// <summary>
/// 还款方式。若为分段还款则存储的为分段还款方式的分段值。否则该list仅含一个元素为当前的还款方式
/// </summary>
[JsonProperty("repay_modes")]
public List<InstallmentMetaInfo> RepayModes { get; set; }
/// <summary>
/// 授信有效起始日期(日期精度为天,包含起始日)
/// </summary>
[JsonProperty("start_date")]
public string StartDate { get; set; }
/// <summary>
/// 授信状态
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}