From c199d41a417faa6e0370d75f3437cd78cffff0b5 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Mon, 09 Aug 2021 20:42:52 +0800
Subject: [PATCH] 1.派遣记录查询接口修改 2.取消报名接口新增 3.保安列表(未持证)查询接口新增
---
src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml | 44 +++++++++++++++++++++++++++++++++++++++++---
1 files changed, 41 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml b/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
index 6d579bc..c17c570 100644
--- a/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
+++ b/src/main/java/org/springblade/modules/information/mapper/InformationMapper.xml
@@ -36,10 +36,13 @@
and representative like concat(concat('%', #{information.representative}),'%')
</if>
<if test="information.stats!=null and information.stats!=''">
- and stats=#{stats}
+ and stats=#{information.stats}
</if>
- <if test="information.jurisdiction!=null and information.jurisdiction!=''">
- and jurisdiction=#{jurisdiction}
+ <if test="information.jurisdiction!=null and information.jurisdiction!='' and information.jurisdiction!='1123598813738675201'">
+ and jurisdiction=#{information.jurisdiction}
+ </if>
+ <if test="information.departmentid!=null and information.departmentid!=''">
+ and departmentid=#{information.departmentid}
</if>
</select>
@@ -158,4 +161,39 @@
LEFT JOIN (SELECT COUNT(*) AS numz, dept_id FROM blade_user GROUP BY dept_id) B ON A.deptid = B.dept_id
WHERE A.deptid = #{deptid}
</select>
+
+ <!--查询培训单位信息(可以报名)-->
+ <select id="securityPage" resultType="org.springblade.modules.information.vo.InformationVO">
+ select
+ si.*,bd.dept_name deptName
+ from
+ sys_information si
+ left join
+ blade_dept bd
+ on
+ si.departmentid = bd.id
+ left join
+ sys_train_exam ste
+ on
+ ste.dept_id = bd.id
+ where 1=1
+ and ste.audit_status = 1
+ <if test="information.deptName!=null and information.deptName!=''">
+ and bd.dept_name like concat(concat('%', #{information.deptName}),'%')
+ </if>
+ <if test="information.representative!=null and information.representative!=''">
+ and representative like concat(concat('%', #{information.representative}),'%')
+ </if>
+ <if test="information.stats!=null and information.stats!=''">
+ and stats=#{stats}
+ </if>
+ <if test="information.jurisdiction!=null and information.jurisdiction!=''">
+ and si.jurisdiction=#{jurisdiction}
+ </if>
+ <if test="information.departmentid!=null and information.departmentid!=''">
+ and departmentid=#{departmentid}
+ </if>
+ </select>
+
+
</mapper>
--
Gitblit v1.9.3