using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Card { /// /// 可盘点商品信息列表 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class StockCheckProductValidResponse { /// /// 商品ID /// [JsonProperty(PropertyName = "specId")] public string SpecId { get; set; } } }