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

ELebaiRModel.cs 556 B

il y a 2 ans
il y a 2 ans
il y a 2 ans
1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.LebaiRobot
  7. {
  8. public enum ELebaiRModel : int
  9. {
  10. 硬件通讯故障 = 0,
  11. 已急停 = 1,
  12. 初始化中 = 2,
  13. 已关机 = 3,
  14. 已开机 = 4,
  15. 空闲状态 = 5,
  16. 暂停中 = 6,
  17. 运行中 = 7,
  18. 固件更新中 = 8,
  19. 启动中 = 9,
  20. 停止中 = 10,
  21. 示教中 = 11,
  22. 普通停止 = 12,
  23. 微调中 = 13
  24. }
  25. }