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