From f2997ef2b7d94fab9c9decfb2e892a9ae2ce0f2e Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Sat, 04 Dec 2021 17:46:37 +0800
Subject: [PATCH] 问题修复

---
 src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml |   12 ++++++++++++
 1 files changed, 12 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 a4856a9..a3f6648 100644
--- a/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml
+++ b/src/main/java/org/springblade/modules/recruitment/mapper/RecruitmentMapper.xml
@@ -17,6 +17,12 @@
         <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}
         </if>
@@ -26,6 +32,12 @@
         <if test="recruitment.district!=null">
             and sr.district = #{recruitment.district}
         </if>
+        <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