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