1.调整pms国网主配网监测点问题

This commit is contained in:
2024-02-26 19:08:29 +08:00
parent c682b7f198
commit f8e28fc4b1
5 changed files with 46 additions and 1 deletions

View File

@@ -188,6 +188,16 @@ public class DeptController extends BaseController {
}
@OperateInfo(info = LogEnum.SYSTEM_COMMON)
@PostMapping("/existMonitorDeptTree")
@ApiOperation("获取部门树(存在监测点的)")
public HttpResult<List<DeptTreeVO>> existMonitorDeptTree(){
String methodDescribe = getMethodDescribe("deptTree");
List<DeptTreeVO> result = deptService.existMonitorDeptTree();
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
}
/**
* 根据条件获取后代部门索引
*