| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.annotation.security.PermitAll; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | |
| | | return CommonResult.success(respVO); |
| | | } |
| | | |
| | | @PostMapping("/plan-data/single-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | public CommonResult<PlanDataSingleChartRespVO> getPlanDataSingleChart(HttpServletResponse response, HttpServletRequest |
| | | request, @RequestBody PreDataSingleChartReqVO reqVO) throws Exception { |
| | | apiSecurityUtils.validate(request); |
| | | PlanDataSingleChartRespVO respVO = mcsApi.getPlanDataSingleChart(reqVO); |
| | | return CommonResult.success(respVO); |
| | | } |
| | | |
| | | @GetMapping("/predict-data/exportValue") |
| | | @Operation(summary = "导出预测数据") |
| | | @ApiAccessLog(operateType = EXPORT) |