From c3ab1cd78126c6e452db8b71058578fc995a24db Mon Sep 17 00:00:00 2001 From: wangxy <1356089412@qq.com> Date: Tue, 20 Aug 2024 14:25:12 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=AF=86=E5=93=81=E8=AE=BE=E5=A4=87?= =?UTF-8?q?=E7=BB=B4=E4=BF=AE=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mapper/system/TdPropertyEmentMapper.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TdPropertyEmentMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdPropertyEmentMapper.xml index e0c2e0b..5b6bc9f 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TdPropertyEmentMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TdPropertyEmentMapper.xml @@ -38,12 +38,6 @@ <if test="name!=null and name!=''"> AND name LIKE concat('%',#{name},'%') </if> - <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 --> - AND create_time >= #{params.beginTime} - </if> - <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 --> - AND create_time <= #{params.endTime} - </if> </trim> ORDER BY create_time DESC </select>