🎨 修改页面大小.

This commit is contained in:
lijiahangmax
2025-01-15 23:44:54 +08:00
parent 932bdb86ad
commit 25359f0f66
6 changed files with 13 additions and 12 deletions

View File

@@ -68,7 +68,7 @@ public interface UserCacheKeyDefine {
.desc("用户登录 token ${id} ${time}")
.type(LoginTokenDTO.class)
.struct(RedisCacheStruct.STRING)
.timeout(24, TimeUnit.HOURS)
.timeout(24 * 60, TimeUnit.MINUTES)
.build();
CacheKeyDefine LOGIN_REFRESH = new CacheKeyBuilder()
@@ -76,7 +76,7 @@ public interface UserCacheKeyDefine {
.desc("用户刷新 token ${id} ${time}")
.type(LoginTokenDTO.class)
.struct(RedisCacheStruct.STRING)
.timeout(32, TimeUnit.HOURS)
.timeout(32 * 60, TimeUnit.MINUTES)
.build();
}