- 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
- {
- /// <summary>
- /// 咖啡机订单队列
- /// </summary>
- public ConcurrentQueue<OrderLocInfo> morkOrderPushesCoffee = new ConcurrentQueue<OrderLocInfo>();
- public bool MakeCoffeeFinish = false;
- public bool IsCoffeeMake = false;
- public K95SysTemStatus coffeeState { get; set; }
- /// <summary>
- /// 咖乐美咖啡机心跳
- /// </summary>
- public bool KLMCoffeeIsConnected = false;
- /// <summary>
- /// 咖啡种类false:咖乐美咖啡 true:咖博士
- /// </summary>
- public static bool CoffeeKind { get; set; } = true;
- }
- }
|