From 3b692f2e44305237b2c9fe96e3c24bd4b4606e2a Mon Sep 17 00:00:00 2001 From: Kurisu Date: Mon, 28 Dec 2020 09:24:41 +0800 Subject: [PATCH] :bug: 查询参数优化 --- fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml b/fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml index ddad66d..4e42088 100644 --- a/fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml +++ b/fw-valhalla-dao/src/main/resources/mapper/FollowTaskMapper.xml @@ -91,10 +91,10 @@ ) - and t1.close_time >= #{closeTime1} + and t1.close_time >= #{condition.closeTime1} - and t1.close_time <= #{closeTime2} + and t1.close_time <= #{condition.closeTime2} and t1.state = #{condition.state} @@ -182,10 +182,10 @@ ) - and t1.close_time >= #{closeTime1} + and t1.close_time >= #{condition.closeTime1} - and t1.close_time <= #{closeTime2} + and t1.close_time <= #{condition.closeTime2} and t1.state = #{condition.state} -- libgit2 0.22.2