using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MybankCreditLoantradeLoanrelationQueryModel Data Structure.
///
[Serializable]
public class MybankCreditLoantradeLoanrelationQueryModel : AopObject
{
///
/// 工商注册号或者身份证号码
///
[JsonProperty("cert_no")]
public string CertNo { get; set; }
///
/// 当客户为公司时,certtype是全国组织机构代码证书。当客户为个人时,是居民身份证
///
[JsonProperty("cert_type")]
public string CertType { get; set; }
///
/// 预留的扩展字段
///
[JsonProperty("ext_params")]
public string ExtParams { get; set; }
///
/// 政策码
///
[JsonProperty("loan_policy_code")]
public string LoanPolicyCode { get; set; }
///
/// 当客户是公司时,entityname是公司名全称;当客户是个人时,entityname是姓名
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 产品码
///
[JsonProperty("product_code")]
public string ProductCode { get; set; }
}
}