设备退运工作流程完成
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package com.njcn.device.biz.enums;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum RunFlagEnum {
|
||||
|
||||
RUNNING(0, "投运"),
|
||||
CHECK(1, "检修"),
|
||||
STOP(2, "停运"),
|
||||
TEST(3, "调试"),
|
||||
QUIT(4, "退运");
|
||||
|
||||
/**
|
||||
* 状态
|
||||
*/
|
||||
private final Integer status;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private final String desc;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user