using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 预估金额依据数据 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionTurnoverHistrylist { /// /// 历史数据日期 /// [JsonProperty(PropertyName = "groupTime")] public string GroupTime { get; set; } /// /// 历史数据门店名称 /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 历史数据门店改日营业额 /// [JsonProperty(PropertyName = "amount")] public decimal Amount { get; set; } } }