using BPA.Models; using BPASmartClient.Device; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.MorkTM { public class GVL_MorkTM: IStatus { /// /// 奶茶订单队列 /// public ConcurrentQueue morkOrderPushesTeaWithMilk = new ConcurrentQueue(); /// /// 当前正在制作的奶茶订单 /// public OrderLocInfo CurrentOrderLoc = new OrderLocInfo(); /// /// 奶茶配料的队列 /// public Dictionary RecipesPushes = new Dictionary(); /// /// /// [VariableMonitor("出料完成", "", "")] public bool OutMaterialComplete { get; set; } } }