using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 门店预估营业额 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionTurnover { /// /// 门店Id /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 门店名称 /// [JsonProperty(PropertyName = "storeName")] public string StoreName { get; set; } /// /// 门店编号 /// [JsonProperty(PropertyName = "storeNo")] public string StoreNo { get; set; } /// /// 预估日(格式:星期数) /// [JsonProperty(PropertyName = "weekDay")] public string WeekDay { get; set; } /// /// 预估日(格式:yyyy-MM-dd) /// [JsonProperty(PropertyName = "dateTime")] public string DateTime { get; set; } /// /// 预估金额 /// [JsonProperty(PropertyName = "preDictionAmount")] public decimal PreDictionAmount { get; set; } /// /// 预估金额依据数据(历史同期营业记录) /// [JsonProperty(PropertyName = "histrylist")] public List Histrylist { get; set; } /// /// 浮动 /// public string PreDictionAmountExplain { get; set; } /// /// 浮动后金额 /// public decimal PreDictionAmountFloat { get; set; } } }