| | |
| | | return R.ok(mgtDeptStaffListVoList); |
| | | } |
| | | |
| | | |
| | | @RequestMapping(value = "/listDeptStaff", method = RequestMethod.POST) |
| | | @ApiOperation(value = "获取所有部门员工列表") |
| | | public R<List<MgtDeptStaffListVo>> listDeptStaff() { |
| | | List<MgtDeptStaffListVo> mgtDeptStaffListVoList= sysStaffService.listMgtDeptStaff(null,null); |
| | | return R.ok(mgtDeptStaffListVoList); |
| | | } |
| | | |
| | | |
| | | |
| | | @RequestMapping(value = "/listMgtDeptStaffByPermission", method = RequestMethod.POST) |
| | | @ApiOperation(value = "通过权限获取部门员工列表") |
| | | public R<List<MgtDeptStaffListVo>> listMgtDeptStaffByPermission() { |