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

48 lines
1.0 KiB

  1. using BPASmartClient.Model.咖啡机.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.Model
  8. {
  9. /// <summary>
  10. /// 驱动设备: 咖博士咖啡机器
  11. /// 设备序列号:0x02225132
  12. /// 创建时间: 20220419
  13. /// </summary>
  14. /// <summary>
  15. /// 咖博士咖啡机制作
  16. /// </summary>
  17. public class DRCoffee_MakeCoffeeEvent :BaseEvent
  18. {
  19. public DrCoffeeDrinksCode DrinkCode { get; set; }
  20. }
  21. /// <summary>
  22. /// 咖博士咖啡机取消制作咖啡
  23. /// </summary>
  24. public class DRCoffee_CancelMakeCoffeeEvent :BaseEvent
  25. {
  26. }
  27. /// <summary>
  28. /// 咖博士咖啡机模式设置
  29. /// </summary>
  30. public class DRCoffee_CoffeeCommCmdEvent :BaseEvent
  31. {
  32. public DrCoffeeCommCmd CommCmd { get; set; }
  33. }
  34. /// <summary>
  35. /// 咖博士咖啡机结束制作
  36. /// </summary>
  37. public class DRCoffee_CoffeEndCookEvent :BaseEvent
  38. {
  39. }
  40. }