From 811b14aa5cd2bd6d4313b43dc38ce87cd938f3b0 Mon Sep 17 00:00:00 2001
From: liusuyi <1951119284@qq.com>
Date: Tue, 23 Jul 2024 17:12:42 +0800
Subject: [PATCH] 优化:通道同步任务 增加:根据用户统计未读总数
---
ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java | 32 ++++++++++++++++++++++++++++++++
1 files changed, 32 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java
index 7fdbc3e..5234894 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java
@@ -3,7 +3,11 @@
import java.util.List;
import java.util.Map;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ruoyi.common.core.domain.DeptUserTree;
+import com.ruoyi.common.core.domain.TreeDeptWell;
import com.ruoyi.common.core.domain.TreeSelect;
+import com.ruoyi.common.core.domain.TreeSelectWell;
import com.ruoyi.common.core.domain.entity.SysDept;
/**
@@ -124,4 +128,32 @@
*/
public int deleteDeptById(Long deptId);
+ /**
+ * 根据当前deptId或者当前及所属下级的所有deptId
+ * @param deptId
+ * @return
+ */
+ List<Long> deptIdBySub(Long deptId);
+
+ List<SysDept> all();
+
+ List<SysDept> allByUser(List<Long> deptList);
+
+ /**
+ * 预留结构的树形
+ * @param depts
+ * @return
+ */
+ List<TreeDeptWell> wellTree(List<TreeDeptWell> depts);
+ List<TreeDeptWell> buildDeptWellTree(List<TreeDeptWell> depts);
+
+ /**
+ * 人员部门结构树形
+ */
+ List<DeptUserTree> deptUserTree(List<DeptUserTree> depts);
+
+ /**
+ * 查询自身及下属和自定义权限主键
+ * */
+ List<Long> selectDeptIdBySubAndUserId(Long deptId,String usersId);
}
--
Gitblit v1.9.3