From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-db/src/main/resources/mapper/report/ReportInfoSettingTitleServiceDaoImplMapper.xml | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/java110-db/src/main/resources/mapper/report/ReportInfoSettingTitleServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/report/ReportInfoSettingTitleServiceDaoImplMapper.xml
index b1e4515..5458db1 100644
--- a/java110-db/src/main/resources/mapper/report/ReportInfoSettingTitleServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/report/ReportInfoSettingTitleServiceDaoImplMapper.xml
@@ -39,6 +39,9 @@
<if test="title !=null and title != ''">
and t.title= #{title}
</if>
+<if test="titleLike !=null and titleLike != ''">
+ and t.title like concat('%',#{titleLike},'%')
+</if>
<if test="communityId !=null and communityId != ''">
and t.community_id= #{communityId}
</if>
@@ -108,6 +111,9 @@
<if test="title !=null and title != ''">
and t.title= #{title}
</if>
+<if test="titleLike !=null and titleLike != ''">
+ and t.title like concat('%',#{titleLike},'%')
+</if>
<if test="communityId !=null and communityId != ''">
and t.community_id= #{communityId}
</if>
--
Gitblit v1.8.0