From 882b7a759c7ba30db2605fd0cd28f20e7ea467dd Mon Sep 17 00:00:00 2001 From: liquanyu Date: Fri, 31 Aug 2018 11:15:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BF=E8=A7=86=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/lyms/platform/query/MatDeliverFollowQuery.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverFollowQuery.java b/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverFollowQuery.java index c0df9cc..ae9ac78 100644 --- a/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverFollowQuery.java +++ b/platform-dal/src/main/java/com/lyms/platform/query/MatDeliverFollowQuery.java @@ -282,7 +282,7 @@ public class MatDeliverFollowQuery extends BaseQuery implements IConvertToNative c = Criteria.where("createDate").gte(createdTimeStart).lte(createdTimeEnd); } if(null != visitStartDate && visitEndDate != null){ - c = Criteria.where("visitDate").gte(createdTimeStart).lte(createdTimeEnd); + c = Criteria.where("visitDate").gte(visitStartDate).lte(visitEndDate); } if(null != updateDateStart && updateDateEnd != null){ c = Criteria.where("updateDate").gte(updateDateStart).lte(updateDateEnd); -- 1.8.3.1