|
@@ -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);
|