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

60 lines
1.6 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>
/// MybankCreditLoantradeLoanschemeQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeLoanschemeQueryModel : AopObject
{
/// <summary>
/// 授信编号
/// </summary>
[JsonProperty("biz")]
public string Biz { get; set; }
/// <summary>
/// 业务编号
/// </summary>
[JsonProperty("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 客户身份编码-个人是身份证号码、企业是工商注册号、会员是会员编号-具体的数字编号
/// </summary>
[JsonProperty("entity_code")]
public string EntityCode { get; set; }
/// <summary>
/// 客户身份标识-个人是姓名、企业是公司名称、会员是会员名称,如支付宝的手机号或者邮箱号
/// </summary>
[JsonProperty("entity_name")]
public string EntityName { get; set; }
/// <summary>
/// 客户身份类型-个人是PERSON、企业是COMPAY、会员是具体的站点如ALIPAY或者MYBANK
/// </summary>
[JsonProperty("entity_type")]
public string EntityType { get; set; }
/// <summary>
/// 微贷政策码
/// </summary>
[JsonProperty("loan_policy_code")]
public string LoanPolicyCode { get; set; }
/// <summary>
/// 金融云产品码
/// </summary>
[JsonProperty("sale_pd_code")]
public string SalePdCode { get; set; }
/// <summary>
/// 基于哪个场景查询授信方案(FIXED_CREDIT:固化授信PROD产品APPLY申请BL:保理)
/// </summary>
[JsonProperty("scen")]
public string Scen { get; set; }
}
}