| | |
| | | private Fbs9100SetparamService service; |
| | | |
| | | @ApiOperation(value = "查询设备的参数", notes = "等10s响应") |
| | | @GetMapping("/serchdevParam") |
| | | @GetMapping("serchdevParam") |
| | | public Response serchdevParam(@RequestParam int devId) { |
| | | return service.serchdevParam(devId); |
| | | } |
| | |
| | | public Response update61850Param(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.update61850Param(fbs9100Setparam); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-设置61853放电参数设置") |
| | | @PostMapping("update61853Param") |
| | | public Response update61853Param(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.update61853Param(fbs9100Setparam); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-设置6186放电参数设置") |
| | | @PostMapping("update6186Param") |
| | | public Response update6186Param(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.update6186Param(fbs9100Setparam); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-设置6184放电参数设置") |
| | | @PostMapping("update6184Param") |
| | | public Response update6184Param(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.update6184Param(fbs9100Setparam); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-读取6184放电参数") |
| | | @GetMapping("get6184Param") |
| | | public Response get6184Param(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.get6184Param(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184设备远程重启") |
| | | @GetMapping("restart6184") |
| | | public Response restart6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.restart6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184远程启动放电测试") |
| | | @GetMapping("startDis6184") |
| | | public Response startDis6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.startDis6184(devId, battGroupNum); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184启动内阻测试") |
| | | @GetMapping("startRes6184") |
| | | public Response startRes6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.startRes6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184停止内阻测试") |
| | | @GetMapping("stopRes6184") |
| | | public Response stopRes6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.stopRes6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184停止测试") |
| | | @GetMapping("stop6184") |
| | | public Response stop6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.stop6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-A059发送指令", notes = "Fbs9100_setparamAction_action_updateA059Cmd(新需求A059检测到停电事件也用此接口发送停止命令)") |
| | | @GetMapping("updateA059Cmd") |