Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SsdataDataserviceDtevalIdentityinfoQueryModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SsdataDataserviceDtevalIdentityinfoQueryModel Data Structure.
/// </summary>
[Serializable]
public class SsdataDataserviceDtevalIdentityinfoQueryModel : AopObject
{
/// <summary>
/// 业务流水号(biz_no),代表了一笔业务,该参数由上数系统创建,为了唯一确定一笔业务的具体核身查询动作
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 业务类型(biz_type)代表了查询核身信息的业务具体类型其中prophet来自于枚举值目前枚举值只有一个业务枚举即"先知"业务 ,该参数由上数系统传递
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 手机号(phone),代表传入的用户手机号码,该参数由上数系统传递
/// </summary>
[JsonProperty("phone")]
public string Phone { get; set; }
}
}