51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayPcreditLoanRepayApplyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayPcreditLoanRepayApplyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 回跳地址,即商户端地址
|
||
/// </summary>
|
||
[XmlElement("back_url")]
|
||
public string BackUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 需要进行还款的贷款申请外部业务单号列表
|
||
/// </summary>
|
||
[XmlArray("loan_out_biz_no_list")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> LoanOutBizNoList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 还款申请业务标准外部订单号,代表商户端自己订单号
|
||
/// </summary>
|
||
[XmlElement("out_biz_no")]
|
||
public string OutBizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 代表了一次请求,作为业务幂等性控制
|
||
/// </summary>
|
||
[XmlElement("out_request_no")]
|
||
public string OutRequestNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 还款申请金额
|
||
/// </summary>
|
||
[XmlElement("repay_amt")]
|
||
public string RepayAmt { get; set; }
|
||
|
||
/// <summary>
|
||
/// 还款类型,取值{CLEAR, OVD_AND_CURRENT}:CLEAR-结清, OVD_AND_CURRENT-逾期和当期
|
||
/// </summary>
|
||
[XmlElement("repay_type")]
|
||
public string RepayType { get; set; }
|
||
}
|
||
}
|