记得上下班打卡 | git大法好,push需谨慎

Commit 46101b3c authored by 张国柄's avatar 张国柄

~api:商铺活动优惠券列表时间筛选bug修复;

parent cc0b5c82
......@@ -1194,7 +1194,7 @@ public class GoblinMongoUtils {
LocalDateTime endTime = DateUtil.Formatter.yyyyMMddHHmmss.parse(filterParam.getEndTime());
LocalDateTime endTimeEnd = endTime.withHour(23).withMinute(59).withSecond(59).withNano(999);
criteria.and("endTime").gte(endTimeEnd);
criteria.and("endTime").lte(endTimeEnd);
}
if (StringUtils.isNotBlank(filterParam.getCreatedDt())) {
LocalDateTime createdAtBegin = DateUtil.Formatter.yyyyMMddHHmmss.parse(filterParam.getCreatedDt() + " 00:00:00");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment