46 lines
1.2 KiB
C#
46 lines
1.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// SchemaVO Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class SchemaVO : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 风险日利率
|
||
/// </summary>
|
||
[XmlElement("daily_risk_int_rate")]
|
||
public string DailyRiskIntRate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 最大申请金额
|
||
/// </summary>
|
||
[XmlElement("max_apply_amt")]
|
||
public string MaxApplyAmt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 最小申请金额
|
||
/// </summary>
|
||
[XmlElement("min_apply_amt")]
|
||
public string MinApplyAmt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支持的还款方式列表,取值{1, 3, 6}:1-等额本息; 3-按期付息到期还本; 6-到期一次性还本付息;
|
||
/// </summary>
|
||
[XmlArray("repay_mode_list")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> RepayModeList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支持的还款期限列表
|
||
/// </summary>
|
||
[XmlArray("term_list")]
|
||
[XmlArrayItem("loan_term")]
|
||
public List<LoanTerm> TermList { get; set; }
|
||
}
|
||
}
|