fix: token有效期修改为,90天。

This commit is contained in:
tianyongbao
2026-07-12 10:05:51 +08:00
parent 4f9bac5536
commit 9f45998426
3 changed files with 8 additions and 8 deletions

View File

@@ -8,14 +8,14 @@ package com.intc.common.core.constant;
public class CacheConstants
{
/**
* 缓存有效期,默认720分钟
* 缓存有效期,默认129600分钟90天
*/
public final static long EXPIRATION = 720;
public final static long EXPIRATION = 129600;
/**
* 缓存刷新时间默认120分钟
* 缓存刷新时间默认10080分钟7天
*/
public final static long REFRESH_TIME = 120;
public final static long REFRESH_TIME = 10080;
/**
* 密码最大错误次数