From 03f42f3e256dbc2e0c4e9b7ce3cb6a85df7cf130 Mon Sep 17 00:00:00 2001
From: tangzy <tangzy123456>
Date: Fri, 27 Aug 2021 20:40:40 +0800
Subject: [PATCH] 1.统计
---
src/main/java/org/springblade/modules/system/mapper/UserMapper.xml | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
index 120bb98..e40c8c8 100644
--- a/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/UserMapper.xml
@@ -392,4 +392,26 @@
bu.dept_id = bd.id
where bu.id = #{user.id}
</select>
+
+ <select id="seleL" resultType="java.util.HashMap">
+ SELECT
+ *
+ FROM
+ blade_user where 1=1
+ <if test="type!=null and type=='2'.toString()">
+ and role_id='1414840172333842433' and `status`=1 AND is_deleted=0
+ </if>
+ <if test="type!=null and type=='1'.toString()">
+ AND ( role_id = '1412226235153731586'
+ OR role_id = '1416733602219110402') AND `status` = 1
+ AND is_deleted = 0
+ AND dept_id = '1425665656887545857'
+ </if>
+ <if test="deptid!=null and deptid!=''">
+ and dept_id=#{deptid}
+ </if>
+ <if test="jurisdiction!=null and jurisdiction!=''">
+ and jurisdiction=#{jurisdiction}
+ </if>
+ </select>
</mapper>
--
Gitblit v1.9.3