using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 未审核的盘点明细列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockUncheckTicketDetailRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 仓库ID /// [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; } } }