24 lines
609 B
C#
24 lines
609 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipaySecurityRiskBackgroundQueryModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipaySecurityRiskBackgroundQueryModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// params+用于背调查询的输入信息+用户传入
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("params")]
|
||
|
|
public string Params { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// partner_name+唯一+作为标识调用者身份的字段+用户填入
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("partner_name")]
|
||
|
|
public string PartnerName { get; set; }
|
||
|
|
}
|
||
|
|
}
|