From 138cac5008689fadaa96ecac116a2297bb69bc1c Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 04 Mar 2022 10:45:40 +0800
Subject: [PATCH] 1. 电子围栏基本接口新增 2. 保安员证核查申请记录基本接口新增,审批,批量审批接口编写 3. 保安员证档案库新增字段 source 来源,保安员证生成修改

---
 src/main/java/org/springblade/modules/workreport/mapper/WorkReportMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/workreport/mapper/WorkReportMapper.xml b/src/main/java/org/springblade/modules/workreport/mapper/WorkReportMapper.xml
index a208717..94d8315 100644
--- a/src/main/java/org/springblade/modules/workreport/mapper/WorkReportMapper.xml
+++ b/src/main/java/org/springblade/modules/workreport/mapper/WorkReportMapper.xml
@@ -21,6 +21,9 @@
         <if test="workReport.realName!=null and  workReport.realName!=''">
             and bu.real_name like concat('%', #{workReport.realName},'%')
         </if>
+        <if test="workReport.content!=null and  workReport.content!=''">
+            and swr.content like concat('%', #{workReport.content},'%')
+        </if>
         <if test="workReport.type!=null">
             and swr.type = #{workReport.type}
         </if>
@@ -51,6 +54,9 @@
         <if test="workReport.realName!=null and  workReport.realName!=''">
             and bu.real_name like concat('%', #{workReport.realName},'%')
         </if>
+        <if test="workReport.content!=null and  workReport.content!=''">
+            and swr.content like concat('%', #{workReport.content},'%')
+        </if>
         <if test="workReport.type!=null">
             and swr.type = #{workReport.type}
         </if>

--
Gitblit v1.9.3