using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MybankCreditLoanapplyApplyQueryModel Data Structure. /// [Serializable] public class MybankCreditLoanapplyApplyQueryModel : AopObject { /// /// 证件号码 /// [XmlElement("cert_no")] public string CertNo { get; set; } /// /// 证件类型 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 扩展查询参数 /// [XmlElement("ext_params")] public string ExtParams { get; set; } /// /// 客户姓名 /// [XmlElement("name")] public string Name { get; set; } /// /// 子申请单编号 /// [XmlElement("subapply_no")] public string SubapplyNo { get; set; } } }