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