|
|
|
@ -143,4 +143,14 @@ public class SysDeptController extends BaseController {
|
|
|
|
return R.ok(deptService.selectDeptByIds(deptIds == null ? null : List.of(deptIds)));
|
|
|
|
return R.ok(deptService.selectDeptByIds(deptIds == null ? null : List.of(deptIds)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 查询全部部门列表
|
|
|
|
|
|
|
|
* @param dept
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@GetMapping("/allListDept")
|
|
|
|
|
|
|
|
public R<List<SysDeptVo>> allListDept(SysDeptBo dept) {
|
|
|
|
|
|
|
|
return R.ok(deptService.selectAllListDept(dept));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|