screen-api/src/main/java/com/moral/api/controller/GovMonitorPointController.java
@@ -115,4 +115,11 @@ List<Map<String, Object>> response = govMonitorPointService.getGovMonitorPointsByOrganizationId(organizationId); return ResultMessage.ok(response); } @GetMapping("getGovMonitorPoints") @ApiOperation("获取国控站信息") public ResultMessage getGovMonitorPoints(){ List<GovMonitorPoint> govMonitorPoints = govMonitorPointService.selectPoint(); return ResultMessage.ok(govMonitorPoints); } }