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