| | |
| | | |
| | | @ApiOperation(value = "获取设备信息(不分页用于包机组)") |
| | | @GetMapping("getDinf") |
| | | public Response getDinf(){ |
| | | return service.getDinf(); |
| | | public Response getDevInf(){ |
| | | return service.getDevInf(); |
| | | } |
| | | @ApiOperation(value = "根据设备id获取设备信息") |
| | | @GetMapping("getDinfById") |
| | | public Response getDinfById(@RequestParam Integer devId){ |
| | | return service.getDinfById(devId); |
| | | public Response getDevInfById(@RequestParam Integer devId){ |
| | | return service.getDevInfById(devId); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取左侧列表") |
| | | @GetMapping("getDevBytype") |
| | | public Response getDevBytype(@RequestParam(required = false) Integer devType){ |
| | | return service.getDevBytype(devType); |
| | | public Response getDevByType(@RequestParam(required = false) Integer devType){ |
| | | return service.getDevByType(devType); |
| | | } |
| | | |
| | | @ApiOperation(value = "新获取左侧列表") |
| | |
| | | |
| | | @ApiOperation(value = "删除设备(同时删除实时和包机组信息)") |
| | | @GetMapping("delDinf") |
| | | public Response delDinf( Integer devId){ |
| | | return service.delDinf(devId); |
| | | public Response delDevInf( Integer devId){ |
| | | return service.delDevInf(devId); |
| | | } |
| | | |
| | | @ApiOperation(value = "强制移除批量设备") |