NewGaoKaoApi/PaymentSDK/AliPay/Domain/LendingRecords.cs

31 lines
732 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>
/// LendingRecords Data Structure.
/// </summary>
[Serializable]
public class LendingRecords : AopObject
{
/// <summary>
/// 放款时间,精确到天
/// </summary>
[XmlElement("date")]
public string Date { get; set; }
/// <summary>
/// 放款流水描述
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 放款额度精确到小数点2位单位
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}