mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-18 17:26:39 +08:00
Conflicts: ruoyi-admin/src/main/java/com/ruoyi/web/controller/monitor/SysLogininforController.java ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysMenu.java ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysRole.java ruoyi-common/src/main/java/com/ruoyi/common/core/domain/entity/SysUser.java ruoyi-common/src/main/java/com/ruoyi/common/core/domain/model/LoginUser.java ruoyi-framework/src/main/java/com/ruoyi/framework/manager/factory/AsyncFactory.java ruoyi-generator/src/main/resources/vm/sql/sql.vm ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/MetaVo.java ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysMenuMapper.java ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysDeptServiceImpl.java ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysMenuServiceImpl.java ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml ruoyi-system/src/main/resources/mapper/system/SysMenuMapper.xml ruoyi-system/src/main/resources/mapper/system/SysRoleMapper.xml ruoyi-ui/src/assets/styles/ruoyi.scss ruoyi-ui/src/router/index.js ruoyi-ui/src/views/system/menu/index.vue ruoyi-ui/src/views/system/role/index.vue ruoyi-ui/src/views/system/user/index.vue sql/ry_20200920.sql
119 lines
2.6 KiB
Java
119 lines
2.6 KiB
Java
package com.ruoyi.system.mapper;
|
||
|
||
import java.util.List;
|
||
import org.apache.ibatis.annotations.Param;
|
||
import com.ruoyi.common.core.domain.entity.SysDept;
|
||
|
||
/**
|
||
* 部门管理 数据层
|
||
*
|
||
* @author ruoyi
|
||
*/
|
||
public interface SysDeptMapper
|
||
{
|
||
/**
|
||
* 查询部门管理数据
|
||
*
|
||
* @param dept 部门信息
|
||
* @return 部门信息集合
|
||
*/
|
||
public List<SysDept> selectDeptList(SysDept dept);
|
||
|
||
/**
|
||
* 根据角色ID查询部门树信息
|
||
*
|
||
* @param roleId 角色ID
|
||
* @param deptCheckStrictly 部门树选择项是否关联显示
|
||
* @return 选中部门列表
|
||
*/
|
||
public List<Integer> selectDeptListByRoleId(@Param("roleId") Long roleId, @Param("deptCheckStrictly") boolean deptCheckStrictly);
|
||
|
||
/**
|
||
* 根据部门ID查询信息
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 部门信息
|
||
*/
|
||
public SysDept selectDeptById(Long deptId);
|
||
|
||
/**
|
||
* 根据ID查询所有子部门
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 部门列表
|
||
*/
|
||
public List<SysDept> selectChildrenDeptById(Long deptId);
|
||
|
||
/**
|
||
* 根据ID查询所有子部门(正常状态)
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 子部门数
|
||
*/
|
||
public int selectNormalChildrenDeptById(Long deptId);
|
||
|
||
/**
|
||
* 是否存在子节点
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 结果
|
||
*/
|
||
public int hasChildByDeptId(Long deptId);
|
||
|
||
/**
|
||
* 查询部门是否存在用户
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 结果
|
||
*/
|
||
public int checkDeptExistUser(Long deptId);
|
||
|
||
/**
|
||
* 校验部门名称是否唯一
|
||
*
|
||
* @param deptName 部门名称
|
||
* @param parentId 父部门ID
|
||
* @return 结果
|
||
*/
|
||
public SysDept checkDeptNameUnique(@Param("deptName") String deptName, @Param("parentId") Long parentId);
|
||
|
||
/**
|
||
* 新增部门信息
|
||
*
|
||
* @param dept 部门信息
|
||
* @return 结果
|
||
*/
|
||
public int insertDept(SysDept dept);
|
||
|
||
/**
|
||
* 修改部门信息
|
||
*
|
||
* @param dept 部门信息
|
||
* @return 结果
|
||
*/
|
||
public int updateDept(SysDept dept);
|
||
|
||
/**
|
||
* 修改所在部门的父级部门状态
|
||
*
|
||
* @param dept 部门
|
||
*/
|
||
public void updateDeptStatus(SysDept dept);
|
||
|
||
/**
|
||
* 修改子元素关系
|
||
*
|
||
* @param depts 子元素
|
||
* @return 结果
|
||
*/
|
||
public int updateDeptChildren(@Param("depts") List<SysDept> depts);
|
||
|
||
/**
|
||
* 删除部门管理信息
|
||
*
|
||
* @param deptId 部门ID
|
||
* @return 结果
|
||
*/
|
||
public int deleteDeptById(Long deptId);
|
||
}
|