using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// YLBPriceDetailInfo Data Structure.
///
[Serializable]
public class YLBPriceDetailInfo : AopObject
{
///
/// 余利宝行情日期,格式为yyyy-MM-dd HH:mm:ss
///
[XmlElement("price_date")]
public string PriceDate { get; set; }
///
/// 七日年化收益率(%),精确到小数点后4位
///
[XmlElement("sevendays_yeild_rate")]
public string SevendaysYeildRate { get; set; }
///
/// 万份收益金额,单位为元
///
[XmlElement("tenthousand_income")]
public string TenthousandIncome { get; set; }
}
}