From f93fc98b4f9d199c516525b33dd83cd0ac4cee76 Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: Wed, 14 Dec 2022 11:31:58 +0800
Subject: [PATCH] 修改参数键名时移除前缓存配置
---
ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml
index 5dd0a47..1d3d5aa 100644
--- a/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml
+++ b/ruoyi-modules/ruoyi-system/src/main/resources/mapper/system/SysOperLogMapper.xml
@@ -38,7 +38,7 @@
<if test="title != null and title != ''">
AND title like concat('%', #{title}, '%')
</if>
- <if test="businessType != null and businessType != ''">
+ <if test="businessType != null">
AND business_type = #{businessType}
</if>
<if test="businessTypes != null and businessTypes.length > 0">
--
Gitblit v1.9.3