Commit cbf49770 by jinxin

许可状态判断修改

parent 42f19f51
......@@ -180,7 +180,7 @@ public class StaffDTO implements Serializable {
this.permitState = 3;
} else if (now.before(this.expireTime)) {
Date date = DateUtil.addDay(now, 30);
if (now.after(this.expireTime)) {
if (date.after(this.expireTime)) {
this.permitState = 2;
} else {
this.permitState = 1;
......
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