using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; using POSV.Stock; namespace POSV.Card { /// /// 可盘点商品信息列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckProductValidRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 仓库ID /// [JsonProperty(PropertyName = "storageId")] public string StorageId { get; set; } /// /// 商品规格Ids(多个以,分割) /// [JsonProperty(PropertyName = "specIds")] public string SpecIds { get; set; } } }