终端一体化运控平台
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.
 
 
 

41 lines
973 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Model.咖啡机.Enum
  7. {
  8. /// <summary>
  9. /// 饮品编号
  10. /// </summary>
  11. public enum DrCoffeeDrinksCode :byte
  12. {
  13. 意式浓缩 = 1,
  14. 美式咖啡 = 2,
  15. 卡布奇诺 = 3,
  16. 两杯意式浓缩 = 4,
  17. 拿铁咖啡 = 5,
  18. 热牛奶 = 6,
  19. 热牛沫 = 7,
  20. 热水 = 8,
  21. 澳白咖啡 = 9,
  22. 玛琪雅朵 = 10,
  23. 拿铁玛琪雅朵 = 11,
  24. 大壶咖啡 = 12,
  25. 现磨咖啡 = 13,
  26. 冰美式 = 14,
  27. 芮斯崔朵 = 15,
  28. 美式奶咖 = 16,
  29. 意式奶咖 = 17,
  30. 咖啡粉制作 = 18,
  31. 两杯芮斯崔朵 = 19,
  32. 两杯卡布奇诺 = 20,
  33. 两杯拿铁咖啡 = 21,
  34. 两杯澳白咖啡 = 22,
  35. 拿铁咖啡_冰 = 23,
  36. 美式咖啡_大 = 24,
  37. 奶盖 = 25,
  38. }
  39. }