From 9c6806b0462a169ce0a7d2dcc295e3634f84ef5a Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Tue, 07 Dec 2021 17:41:13 +0800
Subject: [PATCH] 考试成绩修改查询修改,派遣查询接口修改,定时任务打印时间,修改为23点执行

---
 src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml b/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml
index 0a6cbb3..3608143 100644
--- a/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml
+++ b/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml
@@ -12,10 +12,27 @@
             blade_dept bt
         ON
             sr.dept_id = bt.id
+        left join
+            sys_information si
+        on
+            si.departmentid = bt.id
+        left join
+            sys_jurisdiction sj
+        on
+            sj.id = si.jurisdiction
         WHERE
             1=1
+        <if test="recruitment.jurisdiction!=null and recruitment.jurisdiction!='' and recruitment.jurisdiction!='1372091709474910209'">
+            and (sj.id = #{recruitment.jurisdiction} or sj.parent_id = #{recruitment.jurisdiction})
+        </if>
         <if test="recruitment.tenantName!=null and  recruitment.tenantName!=''">
             and bt.dept_name like concat('%', #{recruitment.tenantName},'%')
+        </if>
+        <if test="recruitment.welfare!=null and  recruitment.welfare!=''">
+            and sr.welfare like concat('%', #{recruitment.welfare},'%')
+        </if>
+        <if test="recruitment.unitsScale!=null and  recruitment.unitsScale!=''">
+            and sr.units_scale like concat('%', #{recruitment.unitsScale},'%')
         </if>
         <if test="recruitment.province!=null">
             and sr.province = #{recruitment.province}
@@ -29,6 +46,9 @@
         <if test="recruitment.permit!=null">
             and sr.permit = #{recruitment.permit}
         </if>
+        <if test="recruitment.deptId!=null">
+            and sr.dept_id = #{recruitment.deptId}
+        </if>
         <if test="recruitment.education!=null and recruitment.education!=''">
             and sr.education = #{recruitment.education}
         </if>

--
Gitblit v1.9.3