| | |
| | | public Response updatePWRestartDevice(@RequestParam int devId) { |
| | | return service.updatePWRestartDevice(devId); |
| | | } |
| | | |
| | | /**LD6参数控制逻辑*/ |
| | | @ApiOperation(tags = "设置参数", value = "读取参数-LD6") |
| | | @GetMapping("searchLD6") |
| | | public Response searchLD6(@RequestParam int devId){ |
| | | return service.searchLD6(devId); |
| | | } |
| | | |
| | | @ApiOperation(tags = "设置参数", value = "设置参数-LD6") |
| | | @PostMapping("updateLD6") |
| | | public Response updateLD6(@RequestBody Fbs9100Setparam param) { |
| | | return service.updateLD6(param); |
| | | } |
| | | |
| | | @ApiOperation(tags = "设置参数", value = "设置参数-LD6-启动测试") |
| | | @PostMapping("updateLD6StartTest") |
| | | public Response updateLD6StartTest(@RequestParam int devId) { |
| | | return service.updateLD6StartTest(devId); |
| | | } |
| | | |
| | | @ApiOperation(tags = "设置参数", value = "设置参数-LD6-停止测试") |
| | | @PostMapping("updateLD6StopTest") |
| | | public Response updateLD6StopTest(@RequestParam int devId) { |
| | | return service.updateLD6StopTest(devId); |
| | | } |
| | | |
| | | |
| | | } |