1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| package com.sandu.ximon.dao.enums;
|
|
| public enum StatusInfoEnums {
|
| /**
| * 音量
| */
| REDIS_VOL(1),
|
| /**
| * 亮度
| */
| REDIS_BRIGHTNESS(2),
|
| /**
| * 视频源
| */
| VIDEO_SOURCE_VALUE(3),
|
| /**
| * 时区和时间
| */
| TIME_VALUE(4),
|
| /**
| * 屏幕状态
| */
| SCREEN_POWER_STATUS(5),
|
| /**
| * 同步播放状态
| */
| SYNC_PLAY_STATUS(6),
|
| ;
|
| private final Integer code;
|
| StatusInfoEnums(Integer code) {
| this.code = code;
| }
|
| public Integer getCode() {
| return code;
| }
| }
|
|