using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// LendingRecords Data Structure.
///
[Serializable]
public class LendingRecords : AopObject
{
///
/// 放款时间,精确到天
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 放款流水描述
///
[XmlElement("remark")]
public string Remark { get; set; }
///
/// 放款额度,精确到小数点2位,单位(元)
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}