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