using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 查询门店商品库存信息请求数据 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionProductRequest { /// /// 门店ID /// [JsonProperty(PropertyName = "storeId")] public string StoreId { get; set; } /// /// 商品Ids(多个Id以","分割。例:"a123456,a1234567,a12345678") /// [JsonProperty(PropertyName = "productIds")] public string ProductIds { get; set; } } }