ConstEquipmentProperties.java
755 Bytes
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
package com.ruoyi.common;
/**
* 设备状态枚举
* @author 20412
*/
public interface ConstEquipmentProperties {
/**
* 设备健康
*/
Integer EQUIPMENT_STATUS_HEALTH = 1;
/**
* 设备异常
*/
Integer EQUIPMENT_STATUS_ILLNESS = 2;
/**
* 刚提交 未处理
*/
Integer EQUIPMENT_PROCESS_FLOW_COMMIT = 3;
/**
* 处理中
*/
Integer EQUIPMENT_PROCESS_FLOW_ACTIVE = 2;
/**
* 处理完成
*/
Integer EQUIPMENT_PROCESS_FLOW_COMPLETE = 1;
/**
* 设备脱机
*/
String DEVICE_OFFLINE = "脱机";
/**
* 设备在线
*/
String DEVICE_ONLINE = "在线";
/**
* 脱机判断5分钟
*/
Long DEVICE_OFFLINE_TIME = 5L;
}