| | |
| | | |
| | | @ApiOperation("在线监测-实时监控-BTS停止") |
| | | @GetMapping("serchbyDev_id") |
| | | private Response serchbyDev_id(@RequestParam int num,@RequestParam int testCmd,@RequestParam int devId){ |
| | | private Response serchbyDev_id(@RequestParam int num,@RequestParam Integer testCmd,@RequestParam int devId){ |
| | | return service.serchbyDev_id(num,testCmd,devId); |
| | | } |
| | | |
| | |
| | | } |
| | | |
| | | //右键查看参数和弹出框的刷新按钮-----BTS停止 |
| | | public Response serchbyDev_id(int num,int testCmd,int devId) { |
| | | boolean bl=sendCmdToFBS9100Dev(num,testCmd,devId); |
| | | public Response serchbyDev_id(int num,Integer testCmd,int devId) { |
| | | boolean bl=sendCmdToFBS9100Dev(num,testCmd!=null?testCmd:0,devId); |
| | | Fbs9100Setparam setparam=mapper.serchbyDev_id(devId); |
| | | return new Response().setII(1,setparam,bl,bl==true?"查询成功!":"设置9100参数失败,请检查网络!"); |
| | | } |