66 lines
2.1 KiB
C#
66 lines
2.1 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// SsdataDataserviceRiskCodeQueryModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class SsdataDataserviceRiskCodeQueryModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 地址信息。省+市+区/县+详细地址,其中 省+市+区/县可以为空,长度不超过256,不含",","/u0001","|","&","^","\\"
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("address")]
|
|||
|
|
public string Address { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 银行卡号。中国大陆银行发布的银行卡:借记卡长度19位;信用卡长度16位;各位的取值位[0,9]的整数;不含虚拟卡。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("bank_card")]
|
|||
|
|
public string BankCard { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 电子邮箱。合法email,字母小写,特殊符号以半角形式出现
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("email")]
|
|||
|
|
public string Email { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 国际移动设备标志。15位长度数字
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("imei")]
|
|||
|
|
public string Imei { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// ip地址。以"."分割的四段Ip,如 x.x.x.x,x为[0,255]之间的整数
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ip")]
|
|||
|
|
public string Ip { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 物理地址。支持格式如下:xx:xx:xx:xx:xx:xx,xx-xx-xx-xx-xx-xx,xxxxxxxxxxxx,x取值范围[0,9]之间的整数及A,B,C,D,E,F
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("mac")]
|
|||
|
|
public string Mac { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 手机号码,中国大陆合法手机号码,长度11位,不含国家代码
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("mobile")]
|
|||
|
|
public string Mobile { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 姓名,长度不超过64,姓名中不含",","/u0001","|","&","^","\\"
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("name")]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// wifi的物理地址。支持格式如下:xx:xx:xx:xx:xx:xx,xx-xx-xx-xx-xx-xx,xxxxxxxxxxxx,x取值范围[0,9]之间的整数及A,B,C,D,E,F
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("wifimac")]
|
|||
|
|
public string Wifimac { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|