From 16da5158608244fc914cf77cf613faca6c901807 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=B5=B5=E5=98=89=E4=BC=9F?= <1724121454@qq.com>
Date: Thu, 19 Aug 2021 17:18:46 +0800
Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=97=A5=E5=BF=97=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 integration/src/main/resources/mapper/IntegrationLogMapper.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/integration/src/main/resources/mapper/IntegrationLogMapper.xml b/integration/src/main/resources/mapper/IntegrationLogMapper.xml
index fb9fd932..ddd2bc08 100644
--- a/integration/src/main/resources/mapper/IntegrationLogMapper.xml
+++ b/integration/src/main/resources/mapper/IntegrationLogMapper.xml
@@ -482,6 +482,9 @@
             <if test="integration.endDateTime != null">
                 AND REQUEST_DATE_TIME &lt;= #{integration.endDateTime}
             </if>
+            <if test="integration.param != null and integration.param != ''">
+                AND PARAM LIKE '%${integration.param}%'
+            </if>
         </where>
         ORDER BY REQUEST_DATE_TIME DESC
     </select>