NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditLoantradeLoanar...

25 lines
882 B
C#
Raw 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;
namespace Aop.Api.Domain
{
/// <summary>
/// MybankCreditLoantradeLoanarrangementQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeLoanarrangementQueryModel : AopObject
{
/// <summary>
/// 网商银行参与者会员角色ID。客户在网商融资平台页面发起贷款申请或者机构调用代客户申贷接口mybank.credit.loanapply.apply.create后网商会把申请结果以消息的方式通知机构该字段包含在返回的消息体中。
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 合约编号,客户签署合约时获取。
/// </summary>
[XmlElement("loan_ar_no")]
public string LoanArNo { get; set; }
}
}