using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Stock { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionProductCostTickets { /// /// 商品Id /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 商品编号 /// [JsonProperty(PropertyName = "productNo")] public string ProductNo { get; set; } /// /// 商品名称 /// [JsonProperty(PropertyName = "productName")] public string ProductName { get; set; } /// /// 今日库存 /// [JsonProperty(PropertyName = "todayStock")] public string TodayStock { get; set; } /// /// 录入日期(格式:yyyy-MM-dd) /// [JsonProperty(PropertyName = "summaryDate")] public string SummaryDate { get; set; } /// /// 昨日库存 /// [JsonProperty(PropertyName = "yeterdayStock")] public string YeterdayStock { get; set; } /// /// 今日入库 /// [JsonProperty(PropertyName = "todayIn")] public string TodayIn { get; set; } } }