终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

45 lignes
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.KLMCoffee.Protocal
  7. {
  8. /// <summary>
  9. /// K95 默认20多种咖啡
  10. /// </summary>
  11. public enum K95deFaultCoffeeEnum
  12. {
  13. 意式咖啡 = 1,
  14. 美式咖啡 = 2,
  15. 咖啡意式咖啡 = 9,
  16. 卡布奇诺 = 4,
  17. 玛琪雅朵 = 5,
  18. 拿铁 = 6,
  19. 白咖啡 = 14,
  20. 芮斯崔朵 = 10,
  21. 意式玛奇朵 = 13,
  22. 奶油咖啡 = 12,
  23. 双杯意式咖啡 = 51,
  24. 双杯卡布奇诺 = 55,
  25. 双杯拿铁 = 57,
  26. 双杯玛琪雅朵 = 56,
  27. 双杯白咖啡 = 59,
  28. 双杯咖啡 = 52,
  29. 双杯芮斯崔朵 = 53,
  30. 双杯意式玛奇朵 = 58,
  31. 双杯奶油咖啡 = 54,
  32. 热水 = 3,
  33. 牛奶 = 7,
  34. 奶沫 = 8,
  35. 大壶咖啡 = 11,
  36. 取消制作 = 200,
  37. 放杯确认 = 201,
  38. 清洗冲泡器 = 202,
  39. 清洗奶沫器 = 203,
  40. 清洗奶沫器确认 = 204,
  41. 状态查询 = 205
  42. }
  43. }