From 9caa82674793eb3ce6b9cfc0dd20d931bcd25e0c Mon Sep 17 00:00:00 2001 From: zhangnaisong <2434969829@qq.com> Date: 星期二, 28 五月 2024 16:18:54 +0800 Subject: [PATCH] 兴趣点查询加入自定义权限修改提交 --- ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java | 8 +++++++- 1 files changed, 7 insertions(+), 1 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 05700bc..f918968 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 @@ -1,6 +1,8 @@ package com.ruoyi.system.mapper; import java.util.List; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import com.ruoyi.common.core.domain.entity.SysDept; @@ -9,7 +11,7 @@ * * @author ruoyi */ -public interface SysDeptMapper +public interface SysDeptMapper extends BaseMapper<SysDept> { /** * 鏌ヨ閮ㄩ棬绠$悊鏁版嵁 @@ -123,5 +125,9 @@ */ 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); } -- Gitblit v1.9.3