using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SceneExtParam Data Structure. /// [Serializable] public class SceneExtParam : AopObject { /// /// B流程申请准入原因 /// [XmlElement("apply_reason")] public string ApplyReason { get; set; } /// /// 机构的合约编号 /// [XmlElement("contract_no")] public string ContractNo { get; set; } /// /// 贴息金额,单位:分 /// [XmlElement("discountamt")] public string Discountamt { get; set; } /// /// 首付款,单位:分 /// [XmlElement("firstpayamt")] public string Firstpayamt { get; set; } /// /// 利率,xx%格式 /// [XmlElement("interestrate")] public string Interestrate { get; set; } /// /// 尾款,单位:分 /// [XmlElement("lastpayamt")] public string Lastpayamt { get; set; } /// /// 月供,单位:分,需要大于等于0 /// [XmlElement("monthpayamt")] public string Monthpayamt { get; set; } /// /// 备注 /// [XmlElement("remark")] public string Remark { get; set; } } }