现场测试问题
预告警单
This commit is contained in:
@@ -13,7 +13,8 @@ public enum FlowStatusEnum {
|
||||
AUDIT(1, "审批中"),
|
||||
APPROVE(2, "审批通过"),
|
||||
OPPOSE(3, "审批不通过"),
|
||||
CANCEL(4, "已取消");
|
||||
CANCEL(4, "已取消"),
|
||||
NO_FEEDBACK(5, "未反馈");
|
||||
|
||||
private final Integer code;
|
||||
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.njcn.supervision.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum LeafletTypeEnum {
|
||||
|
||||
WARNING(1, "预警单"),
|
||||
ALARM(2, "告警单");
|
||||
|
||||
private final Integer code;
|
||||
|
||||
private final String name;
|
||||
|
||||
LeafletTypeEnum(Integer code, String name) {
|
||||
this.code = code;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.njcn.supervision.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum ProblemTypeEnum {
|
||||
|
||||
PLAN(1, "技术监督计划"),
|
||||
ONLINE(2, "在线监测超标问题"),
|
||||
USER(3, "用户投诉问题"),
|
||||
SITE_TEST(4, "现场测试超标问题");
|
||||
|
||||
private final Integer code;
|
||||
|
||||
private final String name;
|
||||
|
||||
ProblemTypeEnum(Integer code, String name) {
|
||||
this.code = code;
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user