yumeng 3 年 前
コミット
42df630c6b

+ 2 - 1
jeecg-boot-module-system/src/main/java/cn/com/ctop/kuaishou/modules/hosting/controller/KuaishouHostingTemplateController.java

@@ -82,7 +82,8 @@ public class KuaishouHostingTemplateController {
             if (!Check.isNull(startDate) && !Check.isNull(endDate)) {
                 Date start = DateUtil.parseDate(startDate += " 00:00:01");
                 Date end = DateUtil.parseDate(endDate += " 23:59:59");
-                queryWrapper.between("stat_date", start, end);
+                queryWrapper.ge("stat_date",start);
+                queryWrapper.le("stat_date",end);
             }
             if (!Check.isNull(name)) {
                 queryWrapper.like("photo_name", name);