| | |
| | | package org.springblade.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.springblade.common.vo.DeptVo; |
| | | import org.springblade.system.entity.Dept; |
| | | import org.springblade.system.vo.DeptVO; |
| | | |
| | |
| | | List<DeptVO> trees(); |
| | | |
| | | /** |
| | | * 获取保安树形节点 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | | List<DeptVO> Batrees(); |
| | | |
| | | /** |
| | | * 懒加载获取树形节点 |
| | | * |
| | | * @param tenantId |
| | |
| | | */ |
| | | List<DeptVO> lazyTree(String tenantId, Long parentId); |
| | | |
| | | List<DeptVO> lazyTrees(String tenantId, Long parentId); |
| | | |
| | | /** |
| | | * 获取部门名 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | List<String> getDeptNames(Long[] ids); |
| | | List selectInfo(); |
| | | List<DeptVO> selectInfo(); |
| | | |
| | | /** |
| | | * 查询所有的部门信息 |
| | | * @return |
| | | */ |
| | | List<DeptVo> selDeptList(); |
| | | } |