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

Commit 8e61dc64 authored by 胡佳晨's avatar 胡佳晨

修改周焕提的bug

parent 92c37c99
......@@ -932,7 +932,7 @@ public class GoblinMongoUtils {
if (st != null && et != null) {
LocalDateTime stDateTime = LocalDateTime.parse(st, DTF_YMD_HMS);
LocalDateTime etDateTime = LocalDateTime.parse(et, DTF_YMD_HMS);
criteria = criteria.and("createdAt").gte(st).lt(et);
criteria = criteria.and("createdAt").gte(stDateTime).lt(etDateTime);
}
if (orderCode != null) {
criteria = criteria.and("orderCode").is(orderCode);
......
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