From 9bc981a55ec6c3401ea04ca3d0a9c145d301b09e Mon Sep 17 00:00:00 2001
From: liusuyi <1951119284@qq.com>
Date: 星期一, 01 七月 2024 11:40:01 +0800
Subject: [PATCH] 修改:临时excel路径修改为系统临时路径
---
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java | 14 +++++++++++++-
1 files changed, 13 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 94d608d..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
@@ -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>
{
/**
* 鏌ヨ閮ㄩ棬绠$悊鏁版嵁
@@ -122,4 +124,14 @@
* @return 缁撴灉
*/
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