using Common.Models; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace Common.HTTPModels { public class ControlCmd { public string command { get; set; } [JsonPropertyName("params")] [JsonProperty("params")] public object Params { get; set; } } public class UnLoadModel { /// /// 是否继续上料 /// public bool isContinueLoad { get; set; } public bool isBSRequest { get; set; } public List sourcePowderBottleBoxModel { get; set; } } public class UploadBoxModel { /// /// 工装类型 /// public BoxTypeEnum fixtureType { get; set; } /// /// 盒子码 /// public string boxSNCode { get; set; } /// /// 位置1~7 /// public int boxId_inDoseUpload { get; set; } /// /// 剩余tip个数(如果fixtureType == 8~10需要) /// public int RemainCount { get; set; } /// /// 样品瓶 /// public List sampleBottles { get; set; } /// /// 原液瓶 /// public List sourceLiquidBottles { get; set; } /// /// 粉末 /// public List sourcePowderBottles { get; set; } } }