dongyukun
2024-11-05 e8ad669f7c97d45cd23630dc101180a130d6c17e
提交 | 用户 | 时间
ce910c 1 package com.netsdk.lib.enumeration;
H 2
3 public class EM_STORAGE_DISK_POWERMODE {
4     public static final int         EM_STORAGE_DISK_POWERMODE_UNKNOWN             = 0;    // UNKnown状态(不是以下状态中的值)
5     public static final int         EM_STORAGE_DISK_POWERMODE_NONE                 = 1;    // 未知状态
6     public static final int         EM_STORAGE_DISK_POWERMODE_ACTIVE             = 2;    // 活动状态
7     public static final int         EM_STORAGE_DISK_POWERMODE_STANDBY            = 3;    // 休眠状态
8     public static final int         EM_STORAGE_DISK_POWERMODE_IDLE               = 4;    // 空闲状态                                     
9 }