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