33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipaySecurityRiskAntifraudBatchqueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipaySecurityRiskAntifraudBatchqueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// company_list+传入的一批待检查的企业名单+用户传入+还可以传入{"creditCode":"企业信用代码"}或者{"regNo":"企业工商注册号"}
|
|
/// </summary>
|
|
[JsonProperty("company_list")]
|
|
|
|
public List<string> CompanyList { get; set; }
|
|
|
|
/// <summary>
|
|
/// partner_name+唯一+作为标识调用者身份的字段+用户填入
|
|
/// </summary>
|
|
[JsonProperty("partner_name")]
|
|
public string PartnerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// staff_list+传入的一批待检查员工信息+用户传入+手机号/身份证姓名二选一+还可以传入{"name":"姓名","phone":"手机号码"}
|
|
/// </summary>
|
|
[JsonProperty("staff_list")]
|
|
|
|
public List<string> StaffList { get; set; }
|
|
}
|
|
} |