| | |
| | | @PostMapping(PREFIX + "/predict-data/last-value") |
| | | @Operation(summary = "获取最后预测值") |
| | | Map<String, BigDecimal> getPredictLastValue(@RequestBody PredictLastValueReqVO reqVO); |
| | | |
| | | @GetMapping("/predict-data/electric") |
| | | @Operation(summary = "电力功率因数预测结果查询") |
| | | Map<String,List<Object[]>> getElectricPredictData(String itemCode); |
| | | |
| | | @GetMapping("/schedule-data/last") |
| | | @Operation(summary = "调度模型最新结果查询") |
| | | String getLastScheduleData(String scheduleCode); |
| | | |
| | | @GetMapping("/machineRealTimeStatus") |
| | | @Operation(summary = "发电机组实时状态查询") |
| | | List<Map<String, Object>> getRealTimeStatus(@RequestBody List<Map<String, Object>> machines); |
| | | } |