NewGaoKaoApi/PaymentSDK/AliPay/Domain/BaseLoanApplyVO.cs

43 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// BaseLoanApplyVO Data Structure.
/// </summary>
[Serializable]
public class BaseLoanApplyVO : 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("loan_term")]
public LoanTerm LoanTerm { get; set; }
/// <summary>
/// 贷款申请状态,取值{SUBMITTED, LENDING, USING, OVD, CLEAR, FAILED}SUBMITTED-已提交; LENDING-放款中; USING-使用中; OVD-已逾期; CLEAR-已结清; FAILED-已失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}