| | |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | 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 = "修改预测模型设置参数") |
| | |
| | | |
| | | @GetMapping(PREFIX + "/electricityPrice/list") |
| | | @Operation(summary = "电价时段配置列表") |
| | | List<ElectricityPriceSegmentedDTO> getElectricityPriceList(@RequestParam("year") String year); |
| | | List<ElectricityPriceSegmentedDTO> getElectricityPriceList(@RequestParam("year") String year, @RequestParam("time") String time); |
| | | |
| | | @PostMapping(PREFIX + "/electricityPrice/create") |
| | | @Operation(summary = "添加电价时段配置列表") |
| | | Boolean createElectricityPrice(@RequestBody List<ElectricityPriceSegmentedDTO> list); |
| | | |
| | | @GetMapping(PREFIX + "/schedule/model/setting/update") |
| | | @Operation(summary = "修改调度模型配置") |
| | | Boolean updateScheduleModelSetting(@RequestParam("modelCode") String modelCode, @RequestParam("key") String key, @RequestParam("value") String value); |
| | | |
| | | @GetMapping(PREFIX + "/alarm-config/update") |
| | | @Operation(summary = "修改预警配置") |
| | | Boolean updateAlarmConfig(@RequestParam("alarmObj")String alarmObj, @RequestParam("upperLimit")String upperLimit, @RequestParam("lowerLimit")String lowerLimit); |
| | | |
| | | @PostMapping(PREFIX + "/chart/param/update") |
| | | @Operation(summary = "修改图表参数配置") |
| | | Boolean updateChartParam(@RequestBody ChartDTO chartDTO); |
| | | |
| | | @GetMapping(PREFIX + "/item/output/itemId") |
| | | @Operation(summary = "获取") |
| | | MmItemOutputDTO getItemOutputByItemid(@RequestParam("itemid") String itemid, @RequestParam("resultstr")String resultstr, @RequestParam("resultIndex")String resultIndex); |
| | | |
| | | |
| | | @PostMapping(PREFIX + "/item/result") |
| | | @Operation(summary = "获取") |
| | | List<Object[]> getItemResult(@RequestBody PreItemResultReqVO reqVO); |
| | | |
| | | @GetMapping(PREFIX + "/predict-item/itemNo") |
| | | @Operation(summary = "获取") |
| | | PredictItemVO getPredictItemByItemNo(@RequestParam("itemNo") String itemNo); |
| | | |
| | | @PostMapping(PREFIX + "/item/result/last-point") |
| | | @Operation(summary = "获取") |
| | | List<Object[]> getItemResultLastPoint(@RequestBody PreItemResultReqVO reqVO); |
| | | } |