From 1494d3e47a0dbdc5f49dacd779b5ffab871a2022 Mon Sep 17 00:00:00 2001
From: liuxm <liuxm@fescotech.com>
Date: 星期四, 16 五月 2024 09:21:00 +0800
Subject: [PATCH] 添加查询所有角色

---
 pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml b/pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml
index 5c0e8fb..7ec9208 100644
--- a/pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml
+++ b/pms-parent/pms-global/src/main/resources/mapper/BaLogMapper.xml
@@ -94,7 +94,7 @@
         content like concat('%', #{content}, '%') and
       </if>
       <if test="dt != null and dt != '' ">
-        dt = #{dt,jdbcType=TIMESTAMP} and
+        DATE_FORMAT(dt, '%Y-%m-%d') = #{dt,jdbcType=TIMESTAMP} and
       </if>
       <if test="ip != null and ip != '' ">
         ip =#{ip,jdbcType=VARCHAR} and
@@ -122,7 +122,7 @@
         content like concat('%', #{content}, '%') and
       </if>
       <if test="dt != null and dt != '' ">
-        dt = #{dt,jdbcType=TIMESTAMP} and
+        DATE_FORMAT(dt, '%Y-%m-%d') = #{dt,jdbcType=TIMESTAMP} and
       </if>
       <if test="ip != null and ip != '' ">
         ip =#{ip,jdbcType=VARCHAR} and

--
Gitblit v1.8.0