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
| package constant;
|
| /**
| * @author:xp
| * @date:2024/7/25 14:27
| */
| public class PointConfigConstants {
|
| /**
| * 普通点位配置的key
| *
| */
| public final static String NORMAL = "normal.workorder.time";
|
| /**
| * 普通点位告警配置的key
| *
| */
| public final static String NORMAL_ALARM = "normal.wordkorder.alarm.time";
|
| /**
| * 重点点位配置的key
| *
| */
| public final static String IMPORTANT = "important.wordkorder.time";
|
| /**
| * 重点点位告警配置的key
| *
| */
| public final static String IMPORTANT_ALARM = "important.wordkorder.alarm.time";
|
| }
|
|