|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Lebai
- {
- public enum ELebaiRModel : int
- {
- 硬件通讯故障 = 0,
- 已急停 = 1,
- 初始化中 = 2,
- 已关机 = 3,
- 已开机 = 4,
- 空闲状态 = 5,
- 暂停中 = 6,
- 运行中 = 7,
- 固件更新中 = 8,
- 启动中 = 9,
- 停止中 = 10,
- 示教中 = 11,
- 普通停止 = 12,
- 微调中 = 13
- }
- }
|