| | |
| | | @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 = "调度模型最新结果查询") |
| | | List<StScheduleRecordVO> getLastScheduleData(String scheduleCode, Integer limit); |
| | | |
| | | @GetMapping("/machineRealTimeStatus") |
| | | @Operation(summary = "发电机组实时状态查询") |
| | | List<Map<String, Object>> getRealTimeStatus(@RequestBody List<Map<String, Object>> machines); |
| | | List<StScheduleRecordVO> getLastScheduleData(@RequestParam("scheduleCode") String scheduleCode,@RequestParam("limit") Integer limit); |
| | | |
| | | @PostMapping("/predict-data/itemNo") |
| | | @Operation(summary = "查询时间范围内预测结果") |
| | | Map<String,List<Object[]>> getPredictDataItemNo(PreDataItemNoReqVO reqVO); |
| | | Map<String,List<Object[]>> getPredictDataItemNo(@RequestBody PreDataItemNoReqVO reqVO); |
| | | |
| | | @GetMapping(PREFIX + "/electricityPrice/list") |
| | | @Operation(summary = "电价时段配置列表") |
| | | List<ElectricityPriceSegmentedDTO> getElectricityPriceList(@RequestParam("year") String year); |
| | | |
| | | @PostMapping(PREFIX + "/electricityPrice/create") |
| | | @Operation(summary = "添加电价时段配置列表") |
| | | Boolean createElectricityPrice(@RequestBody List<ElectricityPriceSegmentedDTO> list); |
| | | |
| | | } |