42 lines
889 B
C#
42 lines
889 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// MybankCreditLoanapplyApplyQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MybankCreditLoanapplyApplyQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 证件号码
|
|
/// </summary>
|
|
[JsonProperty("cert_no")]
|
|
public string CertNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 证件类型
|
|
/// </summary>
|
|
[JsonProperty("cert_type")]
|
|
public string CertType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展查询参数
|
|
/// </summary>
|
|
[JsonProperty("ext_params")]
|
|
public string ExtParams { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户姓名
|
|
/// </summary>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子申请单编号
|
|
/// </summary>
|
|
[JsonProperty("subapply_no")]
|
|
public string SubapplyNo { get; set; }
|
|
}
|
|
} |