ConstEquipmentProperties.java
494 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 = 3;
/**
* 处理王城
*/
Integer EQUIPMENT_PROCESS_FLOW_COMPLETE = 3;
}