| | |
| | | return CommonResult.failed(); |
| | | } |
| | | |
| | | @ApiOperation("批量修改状态") |
| | | @ApiOperation("批量修改用户状态") |
| | | @RequestMapping(value = "/updateStatusBatch", method = RequestMethod.POST) |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "ids", value = "用户Ids",required = true, dataType = "Array"), |
| | |
| | | } |
| | | return CommonResult.failed(); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("获取部门人员") |
| | | @RequestMapping(value = "/getDepartUser/{departId}", method = RequestMethod.GET) |
| | | @ResponseBody |
| | | public CommonResult<List<UmsAdmin>> getDepartUser(@PathVariable Long departId) { |
| | | return CommonResult.success(adminService.getDepartUser(departId)); |
| | | } |
| | | |
| | | } |