| | |
| | | @Operation(summary = "修改预测模型配置") |
| | | Boolean updatePredictModelSetting(@RequestParam("modelCode") String modelCode, @RequestParam("key") String key, @RequestParam("value") String value); |
| | | |
| | | @PostMapping(PREFIX + "/schedule-suggest/operation_record/save") |
| | | @Operation(summary = "保存建议操作记录") |
| | | Boolean saveSuggestOperationRecord(@RequestBody SuggestOperationRecordReqVO reqVO); |
| | | |
| | | @GetMapping(PREFIX + "/suggest/snapshot/getAllChartData") |
| | | @Operation(summary = "根据建议id获取建议快照全部图表数据") |
| | | List<StSuggestSnapshotRecordRespVO> getSuggestSnapshotAllChartData(@RequestParam("suggestId") String suggestId); |
| | | |
| | | } |