ycl-platform/src/main/java/com/ycl/controller/trend/TrendAnalysisController.java
@@ -32,4 +32,10 @@ JSONObject jsonObject = JSON.parseObject(id); return CommonResult.success(trendAnalysisService.queryPointInfo(jsonObject.getString("id"))); } @ApiOperation("首次报警点位数据查询") @PostMapping("/firstInfo") public CommonResult<List<TrendVo>> queryListByCount(@RequestBody TrendAnalysisParam trendAnalysisParam, Integer pageSize, Integer pageNum) { return CommonResult.success(trendAnalysisService.queryListByCount(trendAnalysisParam,pageSize,pageNum)); } }