37 lines
923 B
C#
37 lines
923 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// YLBProfitDetailInfo Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class YLBProfitDetailInfo : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 近1日收益,单位为元
|
||
/// </summary>
|
||
[XmlElement("day_profit")]
|
||
public string DayProfit { get; set; }
|
||
|
||
/// <summary>
|
||
/// 近1月收益,单位为元
|
||
/// </summary>
|
||
[XmlElement("month_profit")]
|
||
public string MonthProfit { get; set; }
|
||
|
||
/// <summary>
|
||
/// 历史累计收益,单位为元
|
||
/// </summary>
|
||
[XmlElement("total_profit")]
|
||
public string TotalProfit { get; set; }
|
||
|
||
/// <summary>
|
||
/// 近1周收益,单位为元
|
||
/// </summary>
|
||
[XmlElement("week_profit")]
|
||
public string WeekProfit { get; set; }
|
||
}
|
||
}
|