ConstEquipmentProperties.java 826 Bytes
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 = "脱机";
    Integer DEVICE_OFFLINE_NUM = 2;
    /**
     * 设备在线
     */
    String DEVICE_ONLINE = "在线";
    Integer DEVICE_ONLINE_NUM = 1;
    /**
     * 脱机判断5分钟
     */
    Long DEVICE_OFFLINE_TIME = 5L;
}