Commit 5518a99a95466e830ee134c1d2326385d745adb0

Authored by 谭毅彬
1 parent 35a79d4a

登录时效修改为12小时

Signed-off-by: TanYibin <5491541@qq.com>
huaheng-wms-core/src/main/java/org/jeecg/utils/HuahengJwtUtil.java
... ... @@ -25,7 +25,7 @@ import cn.hutool.core.date.DateUtil;
25 25 public class HuahengJwtUtil {
26 26  
27 27 /** token失效时间 1天 */
28   - public static final long EXPIRE_TIME = 24 * 60 * 60 * 1000;
  28 + public static final long EXPIRE_TIME = 12 * 60 * 60 * 1000;
29 29  
30 30 public static final String HUAHENG_SYSTEM_ID = "HUAHENG-WMS4";
31 31  
... ...