using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AliTrustRiskARUser Data Structure. /// [Serializable] public class AliTrustRiskARUser : AopObject { /// /// 担保方式 /// [XmlElement("assure_type")] public string AssureType { get; set; } /// /// 加入黑名单原因 /// [XmlElement("black_reason")] public string BlackReason { get; set; } /// /// 加入黑名单时间 /// [XmlElement("create_time_string")] public string CreateTimeString { get; set; } /// /// 现住址 /// [XmlElement("current_place")] public string CurrentPlace { get; set; } /// /// 借款人姓名 /// [XmlElement("customer_name")] public string CustomerName { get; set; } /// /// 电子邮件 /// [XmlElement("email")] public string Email { get; set; } /// /// 是否在安融风险名单 /// [XmlElement("is_black")] public bool IsBlack { get; set; } /// /// 最后一次逾期日期 /// [XmlElement("lastoverdate")] public string Lastoverdate { get; set; } /// /// 借款地点 /// [XmlElement("loan_address")] public string LoanAddress { get; set; } /// /// 借款开始日期 /// [XmlElement("loan_start_date")] public string LoanStartDate { get; set; } /// /// 借款类型 /// [XmlElement("loan_type")] public string LoanType { get; set; } /// /// 最长逾期天数 /// [XmlElement("max_days")] public string MaxDays { get; set; } /// /// 户籍地址 /// [XmlElement("native_place")] public string NativePlace { get; set; } /// /// 逾期期数 /// [XmlElement("over_count")] public string OverCount { get; set; } /// /// 借款人身份证号 /// [XmlElement("paper_number")] public string PaperNumber { get; set; } /// /// 黑名单来源 /// [XmlElement("source_organ")] public string SourceOrgan { get; set; } /// /// 欠款总额 /// [XmlElement("sum_money")] public string SumMoney { get; set; } /// /// 电话 /// [XmlElement("telephone")] public string Telephone { get; set; } } }