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