using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// SsdataDataserviceDtevalIdentitycheckQueryModel Data Structure. /// [Serializable] public class SsdataDataserviceDtevalIdentitycheckQueryModel : AopObject { /// /// 工单流水号 /// [JsonProperty("biz_no")] public string BizNo { get; set; } /// /// 采集到的身份证号 /// [JsonProperty("col_cert_no")] public string ColCertNo { get; set; } /// /// 采集到的手机号码 /// [JsonProperty("col_mobile")] public string ColMobile { get; set; } /// /// 采集到的姓名 /// [JsonProperty("col_user_name")] public string ColUserName { get; set; } /// /// 额外参数 /// [JsonProperty("ext_map")] public string ExtMap { get; set; } /// /// 实际身份证号 /// [JsonProperty("real_cert_no")] public string RealCertNo { get; set; } /// /// 实际手机号号码 /// [JsonProperty("real_mobile")] public string RealMobile { get; set; } /// /// 实际姓名 /// [JsonProperty("real_user_name")] public string RealUserName { get; set; } } }