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.
|
- using BPASmartClient.Model.咖啡机.Enum;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Model
- {
- /// <summary>
- /// 驱动设备: 咖博士咖啡机器
- /// 设备序列号:0x02225132
- /// 创建时间: 20220419
- /// </summary>
-
- /// <summary>
- /// 咖博士咖啡机制作
- /// </summary>
- public class DRCoffee_MakeCoffeeEvent :BaseEvent
- {
- public DrCoffeeDrinksCode DrinkCode { get; set; }
- }
-
- /// <summary>
- /// 咖博士咖啡机取消制作咖啡
- /// </summary>
- public class DRCoffee_CancelMakeCoffeeEvent :BaseEvent
- {
-
- }
-
- /// <summary>
- /// 咖博士咖啡机模式设置
- /// </summary>
- public class DRCoffee_CoffeeCommCmdEvent :BaseEvent
- {
- public DrCoffeeCommCmd CommCmd { get; set; }
- }
-
- /// <summary>
- /// 咖博士咖啡机结束制作
- /// </summary>
- public class DRCoffee_CoffeEndCookEvent :BaseEvent
- {
-
- }
- }
|