swb
2024-11-15 da0cb6ec9344641c5d1820e099131b58149b3fbc
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);
    }
}