55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ZolozIdentificationCustomerBlacklistQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZolozIdentificationCustomerBlacklistQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 设备指纹
|
|
/// </summary>
|
|
[XmlElement("apdid")]
|
|
public string Apdid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备指纹token
|
|
/// </summary>
|
|
[XmlElement("apdid_token")]
|
|
public string ApdidToken { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务流水号
|
|
/// </summary>
|
|
[XmlElement("biz_id")]
|
|
public string BizId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
[XmlElement("cert_name")]
|
|
public string CertName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 证件号
|
|
/// </summary>
|
|
[XmlElement("cert_no")]
|
|
public string CertNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 证件类型
|
|
/// </summary>
|
|
[XmlElement("cert_type")]
|
|
public string CertType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 淘宝无线安全设备标识
|
|
/// </summary>
|
|
[XmlElement("umid")]
|
|
public string Umid { get; set; }
|
|
}
|
|
}
|