| | |
| | | mcsApi.updateScheduleModelSetting(modelCode, key, value); |
| | | return success( true); |
| | | } |
| | | |
| | | @GetMapping("/alarm-config/update") |
| | | @Operation(summary = "修改预警配置列表") |
| | | public CommonResult<Boolean> updateAlarmConfig(@RequestParam("alarmObj")String alarmObj, @RequestParam("upperLimit")String upperLimit, @RequestParam("lowerLimit")String lowerLimit){ |
| | | mcsApi.updateAlarmConfig(alarmObj, upperLimit, lowerLimit); |
| | | return success( true); |
| | | } |
| | | |
| | | @PostMapping("/chart/param/update") |
| | | @Operation(summary = "修改图表参数配置") |
| | | public CommonResult<Boolean> updateChartParam(@RequestBody ChartDTO chartDTO){ |
| | | mcsApi.updateChartParam(chartDTO); |
| | | return success( true); |
| | | } |
| | | } |