NewGaoKaoApi/PaymentSDK/AliPay/Domain/YLBProfitDetailInfo.cs

37 lines
923 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}