|
@@ -44,7 +44,7 @@ public class SysDeptServiceImpl extends JoinServiceImpl<SysDeptMapper, SysDept>
|
|
|
|
|
|
* 查询部门管理数据
|
|
|
*
|
|
|
- * @param
|
|
|
+ * @param
|
|
|
* @return 部门信息集合
|
|
|
*/
|
|
|
@Override
|
|
@@ -68,7 +68,7 @@ public class SysDeptServiceImpl extends JoinServiceImpl<SysDeptMapper, SysDept>
|
|
|
|
|
|
* 查询部门树结构信息
|
|
|
*
|
|
|
- * @param
|
|
|
+ * @param
|
|
|
* @return 部门树信息集合
|
|
|
*/
|
|
|
@Override
|
|
@@ -191,22 +191,22 @@ public class SysDeptServiceImpl extends JoinServiceImpl<SysDeptMapper, SysDept>
|
|
|
return UserConstants.UNIQUE;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
- * 校验部门是否有数据权限
|
|
|
- *
|
|
|
- * @param deptId 部门id
|
|
|
- */
|
|
|
- @Override
|
|
|
- public void checkDeptDataScope(Long deptId) {
|
|
|
- if (!SysUser.isAdmin(SecurityUtils.getId())) {
|
|
|
- SysDeptVo dept = new SysDeptVo();
|
|
|
- dept.setDeptId(deptId);
|
|
|
- List<SysDept> depts = SpringUtils.getAopProxy(this).selectDeptList(dept);
|
|
|
- if (StringUtils.isEmpty(depts)) {
|
|
|
- throw new ServiceException("没有权限访问部门数据!");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
* 新增保存部门信息
|