From ffa70a1adfcbc62f1d2f34d4e6e0003cd92186dd Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 10 Jun 2022 11:24:03 +0800
Subject: [PATCH] ftp 上传下载设置连接超时时间
---
src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml | 21 ++++++++++++++++++---
1 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml b/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
index 608fe0a..163405d 100644
--- a/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/DeptMapper.xml
@@ -486,7 +486,7 @@
(select
bu.id,
bu.dept_id parentId,
- bu.real_name AS title,
+ bu.account AS title,
bu.id AS "value",
bu.id AS "key",
0 as "has_children"
@@ -552,7 +552,7 @@
(select
bu.id,
bu.dept_id parentId,
- bu.real_name AS title,
+ bu.account AS title,
bu.id AS "value",
bu.id AS "key",
0 as "has_children"
@@ -608,7 +608,7 @@
(select
bu.id,
bu.dept_id parentId,
- bu.real_name AS title,
+ bu.account AS title,
bu.id AS "value",
bu.id AS "key",
0 as "has_children"
@@ -889,4 +889,19 @@
'1415620707473223681')
</select>
+
+ <!--查询当前保安单位下的派遣单位信息-->
+ <select id="getDispatchUnitList" resultMap="treeNodeResultMap">
+ SELECT
+ id,
+ 0 as parent_id,
+ name AS title,
+ id AS "value",
+ id AS "key",
+ 0 AS "has_children"
+ FROM
+ sys_dispatcher_unit
+ where dept_id = #{deptId}
+ </select>
+
</mapper>
--
Gitblit v1.9.3