Commit 92b3446a authored by Menethil's avatar Menethil
Browse files

修复时间判断错误

parent 0271ab4f
......@@ -66,8 +66,8 @@ public class LitemallGrouponRulesService {
*/
public boolean isExpired(LitemallGrouponRules rules) {
if (rules == null || rules.getExpireTime().isBefore(LocalDateTime.now()))
return false;
return true;
return true;
return false;
}
/**
......
Supports Markdown
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