Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MybankCreditLoantradeRepayBudgetQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

42 lines
1.1 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>
/// MybankCreditLoantradeRepayBudgetQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeRepayBudgetQueryModel : AopObject
{
/// <summary>
/// 申请还款本金
/// </summary>
[JsonProperty("apply_repay_prin")]
public string ApplyRepayPrin { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
[JsonProperty("ext_data")]
public string ExtData { get; set; }
/// <summary>
/// 银行参与者id是在网商银行创建会员后生成的id网商银行会员的唯一标识
/// </summary>
[JsonProperty("ip_id")]
public string IpId { get; set; }
/// <summary>
/// 银行参与者角色id是在网商银行创建会员后生成的角色id网商银行会员角色的唯一标识
/// </summary>
[JsonProperty("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 贷款合约编号
/// </summary>
[JsonProperty("loan_ar_no")]
public string LoanArNo { get; set; }
}
}