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