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