| | |
| | | |
| | | import com.iailab.framework.apilog.core.annotation.ApiAccessLog; |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.framework.excel.core.util.ExcelUtils; |
| | | import com.iailab.module.data.api.point.dto.ApiPointValueQueryDTO; |
| | | import com.iailab.module.model.api.mcs.McsApi; |
| | | import com.iailab.module.model.api.mcs.dto.*; |
| | | import com.iailab.module.model.common.utils.ApiSecurityUtils; |
| | |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.LinkedHashMap; |
| | | import java.util.List; |
| | | import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
| | | |
| | |
| | | @Autowired |
| | | private McsApi mcsApi; |
| | | |
| | | @PermitAll |
| | | @GetMapping("/predict-item/tree") |
| | | @Operation(summary = "预测项树") |
| | | public CommonResult<List<PredictItemTreeDTO>> getPredictItemTree(HttpServletResponse response, HttpServletRequest |
| | |
| | | return CommonResult.success(list); |
| | | } |
| | | |
| | | @PermitAll |
| | | @PostMapping("/predict-data/charts") |
| | | @Operation(summary = "预测数据图表") |
| | | public CommonResult<PreDataBarLineRespVO> getPreDataCharts(HttpServletResponse response, HttpServletRequest |
| | |
| | | return CommonResult.success(respVO); |
| | | } |
| | | |
| | | @PermitAll |
| | | @PostMapping("/predict-data/item-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | public CommonResult<PreDataItemChartRespVO> getPreDataItemChart(HttpServletResponse response, HttpServletRequest |
| | |
| | | return CommonResult.success(respVO); |
| | | } |
| | | |
| | | @PermitAll |
| | | @GetMapping("/predict-data/single-chart") |
| | | @PostMapping("/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); |
| | | } |
| | | |