| | |
| | | @Autowired |
| | | private Fbs9100SetparamService service; |
| | | |
| | | @ApiOperation(value = "查询设备的参数",notes = "等10s响应") |
| | | @ApiOperation(value = "查询设备的参数", notes = "等10s响应") |
| | | @GetMapping("/serchdevParam") |
| | | public Response serchdevParam(@RequestParam int devId){ |
| | | return service.serchdevParam(devId); |
| | | public Response serchdevParam(@RequestParam int devId) { |
| | | return service.serchdevParam(devId); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控",value = "在线监测-实时监控-BTS停止") |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-BTS停止") |
| | | @GetMapping("serchbyDev_id") |
| | | public Response serchbyDev_id(@RequestParam int num, Integer testCmd,@RequestParam int devId,@RequestParam int battGroupNum){ |
| | | return service.serchbyDev_id(num,testCmd,devId,battGroupNum); |
| | | public Response serchbyDev_id(@RequestParam int num, Integer testCmd, @RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.serchbyDev_id(num, testCmd, devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控",value = "在线监测-实时监控-重启设备") |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "BTS停止基础上加上tb_li9130_setparam_plan表得is_statup设置为0") |
| | | @GetMapping("serchbyDev_id_li9130") |
| | | public Response serchbyDev_id_li9130(@RequestParam int num, Integer testCmd, @RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.serchbyDev_id_li9130(num, testCmd, devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-重启设备") |
| | | @PostMapping("updateMaintain") |
| | | public Response updateMaintain(@RequestBody Fbs9100Setparam fbs9100Setparam){ |
| | | public Response updateMaintain(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.updateMaintain(fbs9100Setparam); |
| | | } |
| | | @ApiOperation(tags = "在线监测-实时监控",value = "在线监测-实时监控-BTS放电参数设置",notes = "Fbs9100_setparamAction_action_update") |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-BTS放电参数设置", notes = "Fbs9100_setparamAction_action_update") |
| | | @PostMapping("update") |
| | | public Response update(@RequestBody Fbs9100Setparam fbs9100Setparam){ |
| | | public Response update(@RequestBody Fbs9100Setparam fbs9100Setparam) { |
| | | return service.update(fbs9100Setparam); |
| | | } |
| | | |