From 2f87a32d7523952e325fcbd8178d03bd402ca3be Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Sun, 30 Oct 2022 02:20:33 +0800
Subject: [PATCH] 20221021

---
 src/main/resources/mapper/dapp/IgtOnHookPlanOrderItemDao.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/dapp/IgtOnHookPlanOrderItemDao.xml b/src/main/resources/mapper/dapp/IgtOnHookPlanOrderItemDao.xml
index c5a9274..62cbd4b 100644
--- a/src/main/resources/mapper/dapp/IgtOnHookPlanOrderItemDao.xml
+++ b/src/main/resources/mapper/dapp/IgtOnHookPlanOrderItemDao.xml
@@ -67,9 +67,9 @@
         FROM igt_on_hook_plan_order_item a
         <where>
             a.order_id = #{orderId}
-            and a.create_time &lt; #{endTime}
+            and a.create_time &lt;= #{endTime}
             <if test="startTime != null">
-                and a.create_time >= #{startTime}
+                and a.create_time > #{startTime}
             </if>
         </where>
         order by create_time desc

--
Gitblit v1.9.1