using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { /// /// 查询门店商品库存信息 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionProductResponse { /// /// 经营会计报表录入库存 /// [JsonProperty(PropertyName = "costTickets")] public List costTickets { get; set; } /// /// 配送待入库数量 /// [JsonProperty(PropertyName = "dispatchTickets")] public List DispatchTickets { get; set; } } }