Enum.h 729 B

123456789101112131415161718192021222324252627
  1. //
  2. // Enum.h
  3. // VclustersGemini
  4. //
  5. // Created by 余衡武 on 2021/11/4.
  6. // Copyright © 2021 APPLE. All rights reserved.
  7. //
  8. #ifndef Enum_h
  9. #define Enum_h
  10. #pragma mark 枚举常量
  11. /**云手机设备状态*/
  12. typedef NS_ENUM(NSInteger, DeviceState) {
  13. DeviceStateInitial = -1, // -1、初始状态
  14. DeviceStateNormal = 0, // 0、正常状态
  15. DeviceStateReStarting = 1, // 1、设备正在重启
  16. DeviceStateReSetting = 2, // 2、设备正在恢复出厂
  17. DeviceStateSiteMoing = 3, // 3、设备正在进行站点迁移
  18. DeviceStateSiteBacking = 4, // 4、取消站点迁移 回滚中
  19. DeviceStateSiteLineUping = 5, // 5、站点迁移排队中
  20. };
  21. #endif /* Enum_h */