using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCreditAutofinanceLoanCloseModel Data Structure. /// [Serializable] public class AlipayCreditAutofinanceLoanCloseModel : AopObject { /// /// 汽车金融内部订单号 /// [XmlElement("applyno")] public string Applyno { get; set; } /// /// 机构编号 /// [XmlElement("orgcode")] public string Orgcode { get; set; } /// /// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线;需保证在外部平台端不重复 /// [XmlElement("outorderno")] public string Outorderno { get; set; } /// /// 关闭原因 /// [XmlElement("reson")] public string Reson { get; set; } /// /// 关闭类型 1. CLOSE_USER_CANCEL(用户主动放弃贷款) 2. CLOSE_TD_REJECT(同盾校验失败) 3. CLOSE_OTHER(其他情况) /// [XmlElement("type")] public string Type { get; set; } } }