Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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;
- }
- }
|