From b0625931bc528429d592f642bdd759e7dbdfb1c3 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Tue, 19 Oct 2021 22:21:07 +0800
Subject: [PATCH] 1.保安员新增接口修改,单个新增保安员默认密码为身份证号后6位,账号为身份证号, 2.考试成绩可以按天导出 3.个人图片批量导入接口修改 4.保安员批量导入修改,如有重复的账号导入的跳过,导入完成后返回提示信息
---
src/main/java/org/springblade/modules/system/mapper/RoleMapper.xml | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/src/main/java/org/springblade/modules/system/mapper/RoleMapper.xml b/src/main/java/org/springblade/modules/system/mapper/RoleMapper.xml
index 53884ab..f5a92c3 100644
--- a/src/main/java/org/springblade/modules/system/mapper/RoleMapper.xml
+++ b/src/main/java/org/springblade/modules/system/mapper/RoleMapper.xml
@@ -27,7 +27,8 @@
</select>
<select id="tree" resultMap="treeNodeResultMap">
- select id, parent_id, role_name as title, id as "value", id as "key" from blade_role where is_deleted = 0 AND id!=1123598816738675201
+ select id, parent_id, role_name as title, id as "value", id as "key" from blade_role where is_deleted = 0 AND
+ id!=1123598816738675201
<if test="param1!=null">
and tenant_id = #{param1}
</if>
@@ -74,7 +75,18 @@
</select>
<select id="selectRole" resultType="java.util.HashMap">
- SELECT id,role_name AS title FROM blade_role WHERE is_deleted = 0 AND id != 1123598816738675201
+ SELECT id,
+ role_name AS title
+ FROM blade_role
+ WHERE is_deleted = 0
+ AND id != 1123598816738675201
+ AND id != 1414575877054365698
+ AND id != 1414840172333842433
+ AND id != 1415870935329771522
+ AND id != 1416733602219110402
+ AND id != 1428177141018771458
+ AND id != 1428972101748465665
+ AND id != 1431234799414071297
</select>
</mapper>
--
Gitblit v1.9.3