修改 预警/告警事务的数据生成策略
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.njcn.prepare.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum BigTypeEnum {
|
||||
COMMON(0, "通用策略"),
|
||||
CUSTOM(1, "定制策略");
|
||||
|
||||
private final Integer code;
|
||||
|
||||
private final String message;
|
||||
|
||||
BigTypeEnum(Integer code, String message) {
|
||||
this.code = code;
|
||||
this.message = message;
|
||||
}
|
||||
}
|
||||
@@ -4,7 +4,7 @@ import lombok.Getter;
|
||||
|
||||
@Getter
|
||||
public enum TypeEnum {
|
||||
MONITOR_TYPE(0, "指标类型"),
|
||||
MONITOR_TYPE(0, "监测点表类型"),
|
||||
INTERFERENCE_TYPE(1, "指标类型"),
|
||||
SOURCE_TYPE(2, "干扰源类型");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user