初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
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; }
}
}