From 9b9af4c9457c03061ce4d0bb7656a2c3ad04894e Mon Sep 17 00:00:00 2001 From: zhangnaisong <2434969829@qq.com> Date: 星期二, 07 五月 2024 15:05:20 +0800 Subject: [PATCH] 视频标签加入有高程及无高程判断提交 --- ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java | 30 ++++++++++++++++++++++++++++++ 1 files changed, 30 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 166ba16..47cf6f0 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 @@ -1,7 +1,13 @@ package com.ruoyi.system.service; 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; /** @@ -121,4 +127,28 @@ * @return 缁撴灉 */ public int deleteDeptById(Long deptId); + + /** + * 鏍规嵁褰撳墠deptId鎴栬�呭綋鍓嶅強鎵�灞炰笅绾х殑鎵�鏈塪eptId + * @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); } -- Gitblit v1.9.3