From 24e152d8a574e77b1909a8fea4703d4fe835c2a5 Mon Sep 17 00:00:00 2001 From: zhangnaisong <2434969829@qq.com> Date: 星期五, 05 七月 2024 11:53:07 +0800 Subject: [PATCH] 查询电磁锁及挂接的车辆提交 --- ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java index 4f436ee..558d9ce 100644 --- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java +++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java @@ -126,4 +126,12 @@ public int deleteDeptById(Long deptId); public List<Long> getChildrenDeptIdList(@Param("deptIdList")List<Long> deptIdList); + + public List<Long> selectDeptIdBySub(Long deptId); + + public List<Long> selectRoleDeptIdByUsersId(String usersId); + + public List<SysDept> getParentsDeptListByDeptId(Long deptId); + + public List<SysDept> selectNextChildrenDeptByIdAndInList(@Param("deptId")Long deptId,@Param("deptIdList")List<Long> deptIdList); } -- Gitblit v1.9.3