using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Stock { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class AskgoodsPredictionProductDispatchTickets { /// /// 商品Id /// [JsonProperty(PropertyName = "productId")] public string ProductId { get; set; } /// /// 商品编号 /// [JsonProperty(PropertyName = "productNo")] public string ProductNo { get; set; } /// /// 商品名称 /// [JsonProperty(PropertyName = "productName")] public string ProductName { get; set; } /// /// 配送数量 /// [JsonProperty(PropertyName = "dispatchStock")] public string DispatchStock { get; set; } } }