From 299b94ebc0707750540c2388c6c77b83117ee32c Mon Sep 17 00:00:00 2001 From: limqhz Date: Mon, 24 May 2021 19:06:45 +0800 Subject: [PATCH] =?UTF-8?q?fix=E6=95=99=E7=BB=83=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mybatis/mapper/sv/VenueLessonMapper.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/src/main/resources/mybatis/mapper/sv/VenueLessonMapper.xml b/service/src/main/resources/mybatis/mapper/sv/VenueLessonMapper.xml index 246ae90..5b7c1cd 100644 --- a/service/src/main/resources/mybatis/mapper/sv/VenueLessonMapper.xml +++ b/service/src/main/resources/mybatis/mapper/sv/VenueLessonMapper.xml @@ -425,9 +425,9 @@ SELECT count(0) FROM sv_venue_lesson WHERE ( - ( and end_time >= #{startTime}) + ( and end_time > #{startTime}) or - ( and end_time >= #{endTime}) + ( and end_time > #{endTime}) ) and deleted = 0 and coach_id = #{coachId} and `date` = #{date}