| | |
| | | package com.iailab.module.model.api.mcs; |
| | | |
| | | import com.iailab.framework.common.pojo.CommonResult; |
| | | import com.iailab.module.model.api.mcs.dto.AlarmMessageDTO; |
| | | import com.iailab.module.model.api.mcs.dto.PredictItemInfoDTO; |
| | | import com.iailab.module.model.api.mcs.dto.PredictItemTreeDTO; |
| | | import com.iailab.module.model.api.mcs.dto.ScheduleSuggestDTO; |
| | | import com.iailab.module.model.api.mcs.dto.*; |
| | | import com.iailab.module.model.enums.ApiConstants; |
| | | import io.swagger.v3.oas.annotations.Operation; |
| | | import io.swagger.v3.oas.annotations.tags.Tag; |
| | |
| | | * @createTime 2024年08月26日 |
| | | */ |
| | | @FeignClient(name = ApiConstants.NAME) |
| | | @Tag(name = "RPC 服务 - MCS") |
| | | @Tag(name = "RPC 服务 - 模型配置信息接口") |
| | | public interface McsApi { |
| | | |
| | | String PREFIX = ApiConstants.PREFIX + "/mcs"; |
| | | |
| | | @GetMapping(PREFIX + "/predict-item-tree") |
| | | @GetMapping(PREFIX + "/predict-item/tree") |
| | | @Operation(summary = "预测项树") |
| | | CommonResult<List<PredictItemTreeDTO>> getPredictItemTree(); |
| | | List<PredictItemTreeDTO> getPredictItemTree(); |
| | | |
| | | @GetMapping(PREFIX + "/predict-item-info") |
| | | @Operation(summary = "预测项详情") |
| | | CommonResult<PredictItemInfoDTO> getPredictItemInfo(@RequestParam Map<String, Object> params); |
| | | @PostMapping(PREFIX + "/predict-data/charts") |
| | | @Operation(summary = "预测数据图表") |
| | | PreDataBarLineRespVO getPreDataCharts(@RequestBody PreDataBarLineReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/predict-data/item-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | PreDataItemChartRespVO getPreDataItemChart(@RequestBody PreDataItemChartReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/predict-data/single-chart") |
| | | @Operation(summary = "预测数据图表") |
| | | PreDataSingleChartRespVO getPreDataSingleChart(@RequestBody PreDataSingleChartReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/predict-data/cur") |
| | | @Operation(summary = "获取当前预测数据") |
| | | Map<String, List<Object[]>> getPreDataCur(@RequestBody PreDataJsonReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/plan-data/single-chart") |
| | | @Operation(summary = "计划数据图表") |
| | | PlanDataSingleChartRespVO getPlanDataSingleChart(@RequestBody PreDataSingleChartReqVO reqVO); |
| | | |
| | | @PostMapping(PREFIX + "/alarm-message/create") |
| | | @Operation(summary = "添加预警信息") |
| | | CommonResult<Boolean> createAlarmMessage(@RequestBody AlarmMessageDTO dto); |
| | | Boolean createAlarmMessage(@RequestBody AlarmMessageRespDTO dto); |
| | | |
| | | @GetMapping(PREFIX + "/alarm-message/list") |
| | | @Operation(summary = "获取预警信息") |
| | | CommonResult<AlarmMessageDTO> listAlarmMessage(@RequestParam Map<String, Object> params); |
| | | @Operation(summary = "获取预警信息列表") |
| | | List<AlarmMessageRespDTO> listAlarmMessage(@RequestParam Map<String, Object> params); |
| | | |
| | | @GetMapping(PREFIX + "/alarm-config/list") |
| | | @Operation(summary = "获取预警配置列表") |
| | | List<AlarmConfigRespDTO> listAlarmConfig(@RequestParam Map<String, Object> params); |
| | | |
| | | @GetMapping(PREFIX + "/alarm-message/last-one") |
| | | @Operation(summary = "获取最新预警信息") |
| | | AlarmMessageRespDTO getLastAlarmMessage(@RequestParam("alarmObj") String alarmObj); |
| | | |
| | | @PostMapping(PREFIX + "/schedule-suggest/create") |
| | | @Operation(summary = "添加调度建议") |
| | | CommonResult<Boolean> createScheduleSuggest(@RequestBody ScheduleSuggestDTO dto); |
| | | Boolean createScheduleSuggest(@RequestBody ScheduleSuggestRespDTO dto); |
| | | |
| | | @GetMapping(PREFIX + "/alarm-message/list") |
| | | @Operation(summary = "获取调度建议") |
| | | CommonResult<ScheduleSuggestDTO> listScheduleSuggest(@RequestParam Map<String, Object> params); |
| | | @GetMapping(PREFIX + "/schedule-suggest/list") |
| | | @Operation(summary = "获取调度建议列表") |
| | | List<ScheduleSuggestRespDTO> listScheduleSuggest(@RequestParam Map<String, Object> params); |
| | | |
| | | @PostMapping(PREFIX + "/predict-model-setting/modify") |
| | | @Operation(summary = "修改预测模型设置参数") |
| | | Boolean modifyPredictModelSetting(@RequestBody List<PredictModelSettingReqDTO> dtos); |
| | | |
| | | @GetMapping(PREFIX + "/schedule-suggest/last-limit") |
| | | @Operation(summary = "获取调度建议列表") |
| | | List<ScheduleSuggestRespDTO> getLastLimitScheduleSuggest(@RequestParam("scheduleObj") String scheduleObj, @RequestParam("limit") Integer limit); |
| | | |
| | | |
| | | @PostMapping(PREFIX + "/schedule-model-setting/modify") |
| | | @Operation(summary = "修改调度模型设置参数") |
| | | Boolean modifyScheduleModelSetting(@RequestBody List<ScheduleModelSettingReqDTO> dtos); |
| | | |
| | | @GetMapping(PREFIX + "/schedule-scheme/list") |
| | | @Operation(summary = "获取调度方案列表") |
| | | List<StScheduleSchemeDTO> listScheduleScheme(@RequestParam("triggerMethod") String triggerMethod, @RequestParam("triggerCondition") String triggerCondition); |
| | | } |