From 7a0a3d837365330be38699894ce0167bade1de58 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期三, 07 十二月 2022 15:00:26 +0800
Subject: [PATCH] 1、优化报修通知信息2、优化缴费审核3、优化发布公告信息4、优化页面显示性问题

---
 java110-db/src/main/resources/mapper/job/TaskServiceDaoImplMapper.xml |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/job/TaskServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/job/TaskServiceDaoImplMapper.xml
index c6f6001..278d3df 100755
--- a/java110-db/src/main/resources/mapper/job/TaskServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/job/TaskServiceDaoImplMapper.xml
@@ -86,7 +86,7 @@
             and t.create_time= #{createTime}
         </if>
         <if test="taskName !=null and taskName != ''">
-            and t.task_name= #{taskName}
+            and t.task_name like '%${taskName}%'
         </if>
         <if test="statusCd !=null and statusCd != ''">
             and t.status_cd= #{statusCd}
@@ -101,7 +101,7 @@
             and t.template_id= #{templateId}
         </if>
         <if test="templateName != null and templateName != ''">
-            and tt.template_name = #{templateName}
+            and tt.template_name like '%${templateName}%'
         </if>
         <if test="taskId !=null and taskId != ''">
             and t.task_id= #{taskId}
@@ -152,7 +152,7 @@
             and t.create_time= #{createTime}
         </if>
         <if test="taskName !=null and taskName != ''">
-            and t.task_name= #{taskName}
+            and t.task_name like '%${taskName}%'
         </if>
         <if test="statusCd !=null and statusCd != ''">
             and t.status_cd= #{statusCd}
@@ -167,7 +167,7 @@
             and t.template_id= #{templateId}
         </if>
         <if test="templateName != null and templateName != ''">
-            and tt.template_name = #{templateName}
+            and tt.template_name like '%${templateName}%'
         </if>
         <if test="taskId !=null and taskId != ''">
             and t.task_id= #{taskId}
@@ -261,5 +261,4 @@
             and t.status_cd= #{statusCd}
         </if>
     </select>
-
 </mapper>

--
Gitblit v1.8.0