|
|
|
@ -104,7 +104,7 @@ public class FactoryAccountsInterceptor implements HandlerInterceptor {
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
// 将 authTime 转换为时间并与当前时间比较
|
|
|
|
|
DateTime authDateTime = DateUtil.date(authTime * 1000); // 将时间戳转换为 DateTime
|
|
|
|
|
DateTime authDateTime = DateUtil.date(authTime); // 将时间戳转换为 DateTime
|
|
|
|
|
// 将 authTime 转换为时间并与当前时间比较
|
|
|
|
|
long timeDifferenceInSeconds = DateUtil.between(authDateTime, currentDate, DateUnit.MS); |
|
|
|
|
if (timeDifferenceInSeconds > authTime1) { |
|
|
|
|