| | |
| | | PreDataBarLineRespVO getPreDataCharts(@RequestBody PreDataBarLineReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/predict-data/item-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | @Operation(summary = "预测数据图表-预测项首页图表") |
| | | PreDataItemChartRespVO getPreDataItemChart(@RequestBody PreDataItemChartReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/predict-data/single-chart") |
| | |
| | | @Operation(summary = "添加调度建议") |
| | | Boolean createScheduleSuggest(@RequestBody ScheduleSuggestRespDTO dto); |
| | | |
| | | @GetMapping(PREFIX + "/schedule-suggest/list") |
| | | @PostMapping(PREFIX + "/schedule-suggest/list") |
| | | @Operation(summary = "获取调度建议列表") |
| | | List<ScheduleSuggestRespDTO> listScheduleSuggest(@RequestParam Map<String, Object> params); |
| | | List<ScheduleSuggestRespDTO> listScheduleSuggest(@RequestBody ScheduleSuggestReqDTO vo); |
| | | |
| | | @PostMapping(PREFIX + "/predict-model-setting/modify") |
| | | @Operation(summary = "修改预测模型设置参数") |
| | |
| | | @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(@RequestParam("scheduleCode") String scheduleCode,@RequestParam("limit") Integer limit); |
| | | |
| | | @GetMapping("/machineRealTimeStatus") |
| | | @Operation(summary = "发电机组实时状态查询") |
| | | List<Map<String, Object>> getRealTimeStatus(@RequestBody List<Map<String, Object>> machines); |
| | | |
| | | @PostMapping("/predict-data/itemNo") |
| | | @Operation(summary = "查询时间范围内预测结果") |
| | | Map<String,List<Object[]>> getPredictDataItemNo(@RequestBody PreDataItemNoReqVO reqVO); |
| | | |
| | | @GetMapping(PREFIX + "/electricityPrice/list") |
| | | @Operation(summary = "电价时段配置列表") |
| | | List<ElectricityPriceSegmentedDTO> getElectricityPriceList(@RequestParam("year") String year, @RequestParam("time") String time); |
| | | |
| | | @PostMapping(PREFIX + "/electricityPrice/create") |
| | | @Operation(summary = "添加电价时段配置列表") |
| | | Boolean createElectricityPrice(@RequestBody List<ElectricityPriceSegmentedDTO> list); |
| | | |
| | | @PostMapping(PREFIX + "/schedule/model/setting/update") |
| | | @Operation(summary = "修改调度模型配置") |
| | | Boolean updateScheduleModelSetting(@RequestParam("modelCode") String modelCode, @RequestParam("key") String key, @RequestParam("value") String value); |
| | | |
| | | @GetMapping(PREFIX + "/schedule/adjust/config-list") |
| | | @Operation(summary = "获取模拟调整配置") |
| | | List<StAdjustConfigDetDTO> getAdjustConfigListByModelId(@RequestParam("modelId") String modelId); |
| | | |
| | | } |