| | |
| | | return service.stopA200Param(devId); |
| | | } |
| | | |
| | | @ApiOperation(value = "批量控制a200均衡仪") |
| | | @GetMapping("controllA200ParamPl") |
| | | public Response controllA200ParamPl(@RequestParam List<Integer> devIds){ |
| | | return service.controllA200ParamPl(devIds); |
| | | @ApiOperation(value = "批量启动a200均衡仪") |
| | | @PostMapping("startA200ParamPl") |
| | | public Response startA200ParamPl(@RequestBody List<Integer> devIds,@RequestParam int type){ |
| | | return service.startA200ParamPl(devIds,type); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "批量停止a200均衡仪") |
| | | @PostMapping("stopA200ParamPl") |
| | | public Response stopA200ParamPl(@RequestBody List<Integer> devIds){ |
| | | return service.stopA200ParamPl(devIds); |
| | | } |
| | | |
| | | } |