From 67ba621db6ee27e4689f3342f4803b5889c20df2 Mon Sep 17 00:00:00 2001
From: WhiskyZulu <a913681304@qq.com>
Date: 星期一, 05 六月 2023 09:44:12 +0800
Subject: [PATCH] update ruoyi-admin/src/main/resources/application.yml. 注释不太对,“数组计算”改为“数字计算”

---
 ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml b/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
index 000166e..7a6fc15 100644
--- a/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/SysDeptMapper.xml
@@ -59,8 +59,10 @@
 	</select>
     
     <select id="selectDeptById" parameterType="Long" resultMap="SysDeptResult">
-		<include refid="selectDeptVo"/>
-		where dept_id = #{deptId}
+		select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,
+			(select dept_name from sys_dept where dept_id = d.parent_id) parent_name
+		from sys_dept d
+		where d.dept_id = #{deptId}
 	</select>
     
     <select id="checkDeptExistUser" parameterType="Long" resultType="int">

--
Gitblit v1.9.2