比对式标准设备、被检设备、监测点功能
This commit is contained in:
@@ -62,7 +62,7 @@ public interface DetectionValidMessage {
|
||||
|
||||
String RECHECK_NUM_FORMAT_ERROR = "检测次数格式错误,请检查recheckNum参数";
|
||||
|
||||
String PATTERN_FORMAT_ERROR = "模式格式错误,请检查patternId参数";
|
||||
String PATTERN_FORMAT_ERROR = "模式格式错误";
|
||||
|
||||
String SOURCE_IDS_NOT_EMPTY = "检测源ID不能为空,请检查sourceIds参数";
|
||||
|
||||
@@ -120,13 +120,13 @@ public interface DetectionValidMessage {
|
||||
|
||||
String BELONG_LINE_NOT_BLANK = "所属母线不能为空";
|
||||
|
||||
String PT_NOT_NULL = "PT变比不能为空";
|
||||
String PT_NOT_BLANK = "PT变比不能为空";
|
||||
|
||||
String CT_NOT_NULL = "CT变比不能为空";
|
||||
String CT_NOT_BLANK = "CT变比不能为空";
|
||||
|
||||
String WIRING_TYPE_NOT_BLANK = "接线方式不能为空";
|
||||
String CONNECTION_NOT_BLANK = "接线方式不能为空";
|
||||
|
||||
String WIRING_TYPE_FORMAT_ERROR = "接线方式格式错误";
|
||||
String CONNECTION_FORMAT_ERROR = "接线方式格式错误";
|
||||
|
||||
String DATASOURCE_ID_NOT_EMPTY = "数据源ID不能为空";
|
||||
|
||||
@@ -158,7 +158,7 @@ public interface DetectionValidMessage {
|
||||
|
||||
String CHECK_RESULT_FORMAT_ERROR = "检测结果格式错误";
|
||||
|
||||
String MONITOR_NUM_NOT_NULL = "监测点序号不能为空";
|
||||
String MONITOR_NUM_NOT_NULL = "线路号不能为空";
|
||||
|
||||
String FACTOR_FLAG_FORMAT_ERROR = "是否支持系数校准格式错误";
|
||||
|
||||
@@ -179,6 +179,20 @@ public interface DetectionValidMessage {
|
||||
|
||||
String DEV_TYPE_NAME_FORMAT_ERROR = "设备类型名称格式错误,只能包含字母、数字、中文、下划线、中划线、点号、空格,长度为1-32个字符";
|
||||
String REPORT_NAME_NOT_BLANK = "报告模板不能为空";
|
||||
String OPERATION_DATE_FORMAT_ERROR = "投运日期格式错误,请检查operationDate参数";
|
||||
|
||||
String INSPECT_DATE_FORMAT_ERROR = "定检日期格式错误,请检查inspectDate参数";
|
||||
String MONITOR_NAME_NOT_BLANK = "监测点名称不能为空";
|
||||
String MONITOR_ID_NOT_BLANK = "谐波系统监测点ID不能为空";
|
||||
String DEVICE_ID_NOT_BLANK = "所属设备ID不能为空";
|
||||
String STAT_INTERVAL_NOT_NULL = "统计间隔不能为空";
|
||||
String MONITOR_ID_PATTERN = "谐波系统监测点ID格式错误";
|
||||
String DATA_RULE_NOT_BLANK = "数据处理原则不能为空";
|
||||
String ASSOCIATE_REPORT_NOT_NULL = "是否关联报告模板不能为空";
|
||||
String PID_FORMAT_ERROR = "PID格式错误";
|
||||
String INSPECT_CHANNEL_NOT_BLANK = "可检通道不能为空";
|
||||
String INSPECT_CHANNEL_FORMAT_ERROR = "可检通道格式错误";
|
||||
String CREATE_DATE_NOT_NULL = "投运日期不能为空";
|
||||
String INSPECT_DATE_NOT_NULL = "定检日期不能为空";
|
||||
String HARM_SYS_ID_NOT_BLANK = "谐波系统设备id不能为空";
|
||||
}
|
||||
|
||||
@@ -61,8 +61,14 @@ public enum DetectionResponseEnum {
|
||||
ERROR_SYSTEM_NOT_EXIST("A02069", "该误差体系不存在,请先添加该误差体系"),
|
||||
DATA_RULE_NOT_EXIST("A02070", "该数据处理原则不存在,请先在\"数据处理原则\"字典中添加"),
|
||||
REPORT_TEMPLATE_NOT_EXIST("A02071", "该报告模板不存在,请先添加该报告模板"),
|
||||
LACK_REPORT_TEMPLATE_ID("A02072","当关联报告模板为\"是\"时,报告模板不能为空" ),
|
||||
NAME_OR_CREATEID_REPEAT("A02073","名称或装置编号重复" );
|
||||
LACK_REPORT_TEMPLATE_ID("A02072", "当关联报告模板为\"是\"时,报告模板不能为空"),
|
||||
NAME_OR_CREATEID_REPEAT("A02073", "名称或装置编号重复"),
|
||||
MONITOR_REPEAT("A02080", "当前设备下已存在相同的监测点"),
|
||||
PQ_STANDARD_DEV_REPEAT("A02090", "已存在同名的标准设备"),
|
||||
IMPORT_FLAG_NOT_UPDATE("A02091", "从谐波系统导入的设备不支持修改"),
|
||||
CONNECTION_NOT_EXIST("A02092", "该连接不存在,请先在\"接线方式\"字典中添加"),
|
||||
MONITOR_NUM_OUT_OF_RANGE("A02093", "检测点线路号超出范围,请检查线路号"),
|
||||
MONITOR_NUM_REPEAT("A02094", "改被检设备下存在相同线路号的监测点");
|
||||
|
||||
private final String code;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user