NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoantradeLoansc...

99 lines
3.8 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// MybankCreditLoantradeLoanschemeFullQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeLoanschemeFullQueryModel : AopObject
{
/// <summary>
/// 支付宝会员id支付宝内部用于标识会员的唯一ID以2088开头不是支付宝登录账号
/// </summary>
[XmlElement("alipay_id")]
public string AlipayId { get; set; }
/// <summary>
/// 支用金额,默认单位是人民币,精确到小数点两位,单位元
/// </summary>
[XmlElement("apply_amt")]
public string ApplyAmt { get; set; }
/// <summary>
/// 申请支用日期(精度为天)格式YYYY-MM-DD2017-01-01
/// </summary>
[XmlElement("apply_date")]
public string ApplyDate { get; set; }
/// <summary>
/// 固化授信模式下的授信编号由网商银行内部的系统生成示例值20161227BC2343C0000000001。若为预授信则此值为空。
/// </summary>
[XmlElement("credit_no")]
public string CreditNo { get; set; }
/// <summary>
/// 客群,信贷申请领域用来标识客户种类,由网商银行内部系统生成。
/// </summary>
[XmlElement("cust_group")]
public string CustGroup { get; set; }
/// <summary>
/// 银行参与者id是在网商银行创建会员后生成的id网商银行会员的唯一标识
/// </summary>
[XmlElement("ip_id")]
public string IpId { get; set; }
/// <summary>
/// 银行参与者角色id是在网商银行创建会员后生成的角色id网商银行会员角色的唯一标识
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 网商银行在对客户授信时使用的政策产品唯一标识码由网商银行内部生成长度8位字母和数字组成示例值BC32001C
/// </summary>
[XmlElement("loan_policy_code")]
public string LoanPolicyCode { get; set; }
/// <summary>
/// 贷款期限,数值,在客户签署贷款合约时,会展示此值
/// </summary>
[XmlElement("loan_term")]
public long LoanTerm { get; set; }
/// <summary>
/// 贷款期限单位枚举值Y、M、D分别表示年月日在客户签署贷款合约时会展示此值
/// </summary>
[XmlElement("loan_term_unit")]
public string LoanTermUnit { get; set; }
/// <summary>
/// 放款用的营销工具ID列表例如打折卡ID列表
/// </summary>
[XmlArray("promo_tools")]
[XmlArrayItem("string")]
public List<string> PromoTools { get; set; }
/// <summary>
/// 还款方式枚举值1等额本息、2等额本金、3按期付息到期还本、4组合还款、6一次性到期还本付息、7固定利息等额分期客户签署贷款合约时会展示此值
/// </summary>
[XmlElement("repay_mode")]
public string RepayMode { get; set; }
/// <summary>
/// 销售产品码一个信贷产品对外销售时的唯一标识由网商银行内部分配长度20位的一串数字示例值01021000100000000169
/// </summary>
[XmlElement("sale_pd_code")]
public string SalePdCode { get; set; }
/// <summary>
/// 收款账号信息,注意:子参数不能全为空
/// </summary>
[XmlElement("trans_in_account")]
public MyBkAccountVO TransInAccount { get; set; }
}
}