From b80cff6055cd8c261393698deb897e86a6f4dc1d Mon Sep 17 00:00:00 2001 From: ‘liusuyi’ <1951119284@qq.com> Date: 星期二, 17 十月 2023 13:18:55 +0800 Subject: [PATCH] 1. 增加聚焦模式切换接口 2. 增加短时录像接口 3. 增加目标引导接口 4. 增加预置点设置调取接口 --- ruoyi-system/src/main/java/com/ruoyi/system/service/ISysDeptService.java | 13 +++++++++++++ 1 files changed, 13 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 c18f045..403ffed 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,10 @@ import java.util.List; import java.util.Map; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +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; /** @@ -131,5 +134,15 @@ */ 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); } -- Gitblit v1.9.3