添加通过部门编号查询部门接口

This commit is contained in:
2022-11-28 10:14:37 +08:00
parent ae39bcf84c
commit a9f0b494b0
9 changed files with 80 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ public enum SystemResponseEnum {
MONITOR_TAG_EMPTY("A00365","查询字典监测点标签类型为空"),
MONITORY_TYPE_EMPTY("A00366","查询字典监测对象类型为空"),
TERMINAL_WIRING_EMPTY("A00367","查询字典监测终端接线方式为空"),
MONITOR_TYPE_EMPTY("A00368","查询字典监测点类别为空"),

View File

@@ -0,0 +1,16 @@
package com.njcn.system.pojo.constant;
/**
* pqs
*
* @author cdf
* @date 2022/11/23
*/
public interface DicDataConstant {
/*监测点类别*/
String ONE_LINE = "One_Line";
String TWO_LINE = "Two_Line";
String THREE_LINE ="Three_Line";
}