终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
907 B

  1. using BPASmartClient.Device;
  2. using System.Collections.Concurrent;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using BPASmartClient.KLMCoffee.Protocal;
  6. namespace BPASmartClient.MorkTSingle
  7. {
  8. public class GVL_MORKJC : IStatus
  9. {
  10. /// <summary>
  11. /// 咖啡机订单队列
  12. /// </summary>
  13. public ConcurrentQueue<OrderLocInfo> morkOrderPushesCoffee = new ConcurrentQueue<OrderLocInfo>();
  14. public bool MakeCoffeeFinish = false;
  15. public bool IsCoffeeMake = false;
  16. public K95SysTemStatus coffeeState { get; set; }
  17. /// <summary>
  18. /// 咖乐美咖啡机心跳
  19. /// </summary>
  20. public bool KLMCoffeeIsConnected = false;
  21. /// <summary>
  22. /// 咖啡种类false:咖乐美咖啡 true:咖博士
  23. /// </summary>
  24. public static bool CoffeeKind { get; set; } = true;
  25. }
  26. }