37 lines
862 B
C#
37 lines
862 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// FeeRecords Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class FeeRecords : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 费用余额,单位为元,小数点保留2位
|
||
/// </summary>
|
||
[XmlElement("balance")]
|
||
public string Balance { get; set; }
|
||
|
||
/// <summary>
|
||
/// 交易时间
|
||
/// </summary>
|
||
[XmlElement("date")]
|
||
public string Date { get; set; }
|
||
|
||
/// <summary>
|
||
/// 费用交易流水备注
|
||
/// </summary>
|
||
[XmlElement("remark")]
|
||
public string Remark { get; set; }
|
||
|
||
/// <summary>
|
||
/// 费用交易额度
|
||
/// </summary>
|
||
[XmlElement("total_amount")]
|
||
public string TotalAmount { get; set; }
|
||
}
|
||
}
|