| | |
| | | return service.getAllUser(pageCurr,pageSize); |
| | | } |
| | | |
| | | @ApiOperation(value = "查询所有用户信息(不分页用于包机组)") |
| | | @GetMapping("getUinf") |
| | | public Response getUinf(){ |
| | | return service.getUinf(); |
| | | } |
| | | |
| | | @ApiOperation(value = "测试查询所有用户信息(不分页用于包机组)") |
| | | @GetMapping("getUinf1") |
| | | public Response getUinf1(){ |
| | | return service.getUinf(); |
| | | } |
| | | |
| | | @ApiOperation(value = "编辑用户权限和用户名") |
| | | @GetMapping("updateUser") |
| | | public Response updateUser(@RequestParam int uid,@RequestParam(required = false) String uname,@RequestParam(required = false) int udownloadRole){ |
| | |
| | | public Response resetSnId(@RequestParam int uid){ |
| | | return service.resetSnId( uid); |
| | | } |
| | | |
| | | |
| | | } |