From 53153afbec438d582d79579390affc9b72ed3730 Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期二, 08 七月 2025 14:28:40 +0800 Subject: [PATCH] 排序改造 --- multi-system/src/main/java/com/gkhy/exam/system/service/ISysDeptService.java | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/multi-system/src/main/java/com/gkhy/exam/system/service/ISysDeptService.java b/multi-system/src/main/java/com/gkhy/exam/system/service/ISysDeptService.java index 406f476..5a2f52d 100644 --- a/multi-system/src/main/java/com/gkhy/exam/system/service/ISysDeptService.java +++ b/multi-system/src/main/java/com/gkhy/exam/system/service/ISysDeptService.java @@ -2,6 +2,7 @@ +import com.gkhy.exam.common.api.CommonPage; import com.gkhy.exam.common.domain.TreeSelect; import com.gkhy.exam.common.domain.entity.SysDept; import com.gkhy.exam.system.domain.SysFunctionalDistribution; @@ -16,6 +17,8 @@ */ public interface ISysDeptService { + + CommonPage selectDeptPageList(SysDept req); /** * 查询部门管理数据 * @@ -32,7 +35,7 @@ * @param dept 部门信息 * @return 部门树信息集合 */ - public List<TreeSelect> selectDeptTreeList(SysDept dept); + public List<SysDept> selectDeptTreeList(SysDept dept); /** * 构建前端所需要树结构 -- Gitblit v1.9.2