using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MybankCreditLoantradeNewloanarRepayApplyModel Data Structure.
///
[Serializable]
public class MybankCreditLoantradeNewloanarRepayApplyModel : AopObject
{
///
/// 申请还款费用,收费必填
///
[XmlElement("apply_repay_fee")]
public string ApplyRepayFee { get; set; }
///
/// 申请还款利息,收费必填
///
[XmlElement("apply_repay_int")]
public string ApplyRepayInt { get; set; }
///
/// 申请还款罚息,收费必填
///
[XmlElement("apply_repay_penalty")]
public string ApplyRepayPenalty { get; set; }
///
/// 申请还款本金,收费必填
///
[XmlElement("apply_repay_prin")]
public string ApplyRepayPrin { get; set; }
///
/// 贷款客户在网商的会员角色ID
///
[XmlElement("cust_iprole_id")]
public string CustIproleId { get; set; }
///
/// 贷款合约号
///
[XmlElement("loan_ar_no")]
public string LoanArNo { get; set; }
///
/// 还款金额,单位默认为元,支持小数点两位,为了便于传输,合作方需将数值型转换为字符串型
///
[XmlElement("repay_amt")]
public string RepayAmt { get; set; }
///
/// 网商结算户的卡号外标,若机构合约不是对客担保该账户必填
///
[XmlElement("repay_card_no")]
public string RepayCardNo { get; set; }
///
/// 还款类型,总额还款:TOTAL_AMT 本金还款:PRIN_AMT
///
[XmlElement("repay_type")]
public string RepayType { get; set; }
///
/// 外部流水号格式:日期(8位)+序列号(8位),序列号是数字,如00000001(必须是16位且符合该格式)幂等字段,如果其他参数有变化,此字段需要修改。
///
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}