NewGaoKaoApi/PaymentSDK/AliPay/Domain/LoanTerm.cs

25 lines
549 B
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>
/// LoanTerm Data Structure.
/// </summary>
[Serializable]
public class LoanTerm : AopObject
{
/// <summary>
/// 贷款期数
/// </summary>
[XmlElement("term")]
public long Term { get; set; }
/// <summary>
/// 贷款期限单位,取值{D, M, Y}D-日; M-月; Y-年
/// </summary>
[XmlElement("term_unit")]
public string TermUnit { get; set; }
}
}