63 lines
1.7 KiB
C#
63 lines
1.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// LoanApplyBudgetVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class LoanApplyBudgetVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 贷款申请金额
|
|
/// </summary>
|
|
[XmlElement("apply_amt")]
|
|
public string ApplyAmt { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请时间,即用户提交贷款申请的时间
|
|
/// </summary>
|
|
[XmlElement("apply_date")]
|
|
public string ApplyDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 贷款申请受理单号
|
|
/// </summary>
|
|
[XmlElement("apply_receipt_no")]
|
|
public string ApplyReceiptNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 还款预算
|
|
/// </summary>
|
|
[XmlElement("budget")]
|
|
public BudgetVO Budget { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前期次
|
|
/// </summary>
|
|
[XmlElement("current_term")]
|
|
public long CurrentTerm { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前期次的还款日
|
|
/// </summary>
|
|
[XmlElement("current_term_repay_date")]
|
|
public string CurrentTermRepayDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 贷款期限,包含贷款期数和期数单位
|
|
/// </summary>
|
|
[XmlElement("loan_term")]
|
|
public LoanTerm LoanTerm { get; set; }
|
|
|
|
/// <summary>
|
|
/// 贷后还款分期计划
|
|
/// </summary>
|
|
[XmlArray("repay_plan_term_list")]
|
|
[XmlArrayItem("repay_plan_term_v_o")]
|
|
public List<RepayPlanTermVO> RepayPlanTermList { get; set; }
|
|
}
|
|
}
|