@@ -83,7 +83,7 @@ public class ActionApi {
// 获得两个时间的毫秒时间差异
long diff = new Date().getTime() - date.getTime();
long min = diff % nd % nh / nm;
- if (min > 1) {
+ if (min >= 1) {
logger.error("reqid已过期");
return AjaxResult.error("reqid已过期!");
}