93 lines
2.8 KiB
C#
93 lines
2.8 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// MybankCreditLoantradeRepayCustApplyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class MybankCreditLoantradeRepayCustApplyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 申请还款费用(提前还款费除外)
|
||
/// </summary>
|
||
[XmlElement("apply_repay_fee")]
|
||
public string ApplyRepayFee { get; set; }
|
||
|
||
/// <summary>
|
||
/// 申请还款利息
|
||
/// </summary>
|
||
[XmlElement("apply_repay_int")]
|
||
public string ApplyRepayInt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 提前还款费
|
||
/// </summary>
|
||
[XmlElement("apply_repay_pre_fee")]
|
||
public string ApplyRepayPreFee { get; set; }
|
||
|
||
/// <summary>
|
||
/// 申请还款本金
|
||
/// </summary>
|
||
[XmlElement("apply_repay_prin")]
|
||
public string ApplyRepayPrin { get; set; }
|
||
|
||
/// <summary>
|
||
/// 优惠金额,单位元
|
||
/// </summary>
|
||
[XmlElement("discount_amt")]
|
||
public string DiscountAmt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 扩展字段
|
||
/// </summary>
|
||
[XmlElement("ext_data")]
|
||
public string ExtData { 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>
|
||
/// 贷款合约编号
|
||
/// </summary>
|
||
[XmlElement("loan_ar_no")]
|
||
public string LoanArNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 营销工具ID列表,例如红包,打折卡等营销工具ID列表
|
||
/// </summary>
|
||
[XmlArray("prom_tools")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> PromTools { get; set; }
|
||
|
||
/// <summary>
|
||
/// 还款账户
|
||
/// </summary>
|
||
[XmlElement("repay_account")]
|
||
public MyBkAccountVO RepayAccount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 还款类型,CUSTOMER_ACTIVE_REPAY:提前还款-客户主动还款;CUSTOMER_PASSIVE_REPAY:提前还款-系统触发还款
|
||
/// </summary>
|
||
[XmlElement("repay_type")]
|
||
public string RepayType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 请求流水号,用于幂等控制.以"ipRoleId_"开头
|
||
/// </summary>
|
||
[XmlElement("request_id")]
|
||
public string RequestId { get; set; }
|
||
}
|
||
}
|