using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 门店盘点分析 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckSummaryRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 盘点单编号 /// [JsonProperty(PropertyName = "no")] public string No { get; set; } /// /// 开始时间(如:2017-07-12 13:04:00) /// [JsonProperty(PropertyName = "startTime")] public string StartTime { get; set; } /// /// 结束时间(如:2017-07-12 13:04:59) /// [JsonProperty(PropertyName = "endTime")] public string EndTime { get; set; } /// /// 查询关键字 /// [JsonProperty(PropertyName = "storageId")] public string StorageId { get; set; } /// /// 商品类别ID /// [JsonProperty(PropertyName = "typeId")] public string TypeId { get; set; } /// /// 商品名称/编号 /// [JsonProperty(PropertyName = "keyword")] public string Keyword { get; set; } } }