| | |
| | | @PermitAll |
| | | @GetMapping("/predict-data/single-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | public CommonResult<PreDataItemChartRespVO> getPreDataSingleChart(HttpServletResponse response, HttpServletRequest |
| | | public CommonResult<PreDataSingleChartRespVO> getPreDataSingleChart(HttpServletResponse response, HttpServletRequest |
| | | request, @RequestBody PreDataSingleChartReqVO reqVO) throws Exception { |
| | | apiSecurityUtils.validate(request); |
| | | PreDataItemChartRespVO respVO = mcsApi.getPreDataSingleChart(reqVO); |
| | | PreDataSingleChartRespVO respVO = mcsApi.getPreDataSingleChart(reqVO); |
| | | return CommonResult.success(respVO); |
| | | } |
| | | |