44 lines
1.8 KiB
C#
44 lines
1.8 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipaySecurityDataInfoSecuritydataQueryModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlipaySecurityDataInfoSecuritydataQueryModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 业务代码.由蚂蚁金服定义的风控查询业务类型,例如: EX0001:查询风控黑名单,EX0002:查询地理信息数据
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("biz_id")]
|
|||
|
|
public string BizId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 扩展参数,用于业务扩展入参,格式为json.注意由于嵌套在入参json中,引号需要转义,详见入参样式.
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ext")]
|
|||
|
|
public string Ext { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询的主体值,例如身份证号: "210******019087",支持单个或者多个,多个以逗号分隔.主体值支持的数据类型目前有以下,跟type栏位定义的类型对应. bank_card_no,银行卡号、
|
|||
|
|
/// cert_no,身份证号码、 business_license_no,营业执照号码、 company_name, 公司名称, phone,预留手机号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("subject")]
|
|||
|
|
public string Subject { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 系统名称,标识接入机构内部部门的系统名 ,具体值需要与蚂蚁金服服务提供方约定.
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("system_name")]
|
|||
|
|
public string SystemName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 查询参数类型,描述查询主体值类型.单次查询仅支持查询同一类型的主题值. 以黑名单业务为例: bank_card_no,银行卡号、 cert_no,身份证号码、 business_license_no,营业执照号码、
|
|||
|
|
/// company_name, 公司名称, phone,预留手机号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("type")]
|
|||
|
|
public string Type { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|