using BPASmartClient.Device; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.ObjectModel; using BPASmartClient.KLMCoffee.Protocal; namespace BPASmartClient.MorkTSingle { public class GVL_MORKJC : IStatus { /// /// 咖啡机订单队列 /// public ConcurrentQueue morkOrderPushesCoffee = new ConcurrentQueue(); public bool MakeCoffeeFinish = false; public bool IsCoffeeMake = false; public K95SysTemStatus coffeeState { get; set; } /// /// 咖乐美咖啡机心跳 /// public bool KLMCoffeeIsConnected = false; /// /// 咖啡种类false:咖乐美咖啡 true:咖博士 /// public static bool CoffeeKind { get; set; } = true; } }