From c1a3e0f709c66c0bd3be358fc69c8c14b06e6d90 Mon Sep 17 00:00:00 2001 From: chy Date: Mon, 9 Feb 2026 11:19:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/vo/oauth2/client/OAuth2ClientSaveReqVO.java | 1 + .../lideeyunji/tool/framework/common/enums/DocumentEnum.java | 4 ++-- .../framework/file/core/client/s3/S3FileClientConfig.java | 4 ++-- .../tool/framework/quartz/config/QuartzAutoConfiguration.java | 2 +- .../framework/quartz/core/scheduler/SchedulerManager.java | 2 +- .../lideeyunji/tool/framework/test/core/util/RandomUtils.java | 2 +- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lidee-service/lidee-service-system-biz/src/main/java/com/lideeyunji/service/system/controller/vo/oauth2/client/OAuth2ClientSaveReqVO.java b/lidee-service/lidee-service-system-biz/src/main/java/com/lideeyunji/service/system/controller/vo/oauth2/client/OAuth2ClientSaveReqVO.java index 1d5b520..11f0295 100644 --- a/lidee-service/lidee-service-system-biz/src/main/java/com/lideeyunji/service/system/controller/vo/oauth2/client/OAuth2ClientSaveReqVO.java +++ b/lidee-service/lidee-service-system-biz/src/main/java/com/lideeyunji/service/system/controller/vo/oauth2/client/OAuth2ClientSaveReqVO.java @@ -46,6 +46,7 @@ public class OAuth2ClientSaveReqVO { @NotNull(message = "访问令牌的有效期不能为空") private Integer accessTokenValiditySeconds; + @Schema(description = "刷新令牌的有效期", requiredMode = Schema.RequiredMode.REQUIRED, example = "8640000") @NotNull(message = "刷新令牌的有效期不能为空") private Integer refreshTokenValiditySeconds; diff --git a/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/enums/DocumentEnum.java b/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/enums/DocumentEnum.java index 4034d68..c304d0b 100644 --- a/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/enums/DocumentEnum.java +++ b/lidee-tool/tool-common/src/main/java/com/lideeyunji/tool/framework/common/enums/DocumentEnum.java @@ -12,8 +12,8 @@ import lombok.Getter; @AllArgsConstructor public enum DocumentEnum { - REDIS_INSTALL("https://gitee.com/zhijiantianya/ruoyi-vue-pro/issues/I4VCSJ", "Redis 安装文档"), - TENANT("https://doc.iocoder.cn", "SaaS 多租户文档"); + REDIS_INSTALL("#", "Redis 安装文档"), + TENANT("#", "SaaS 多租户文档"); private final String url; private final String memo; diff --git a/lidee-tool/tool-spring-boot-starter-file/src/main/java/com/lideeyunji/tool/framework/file/core/client/s3/S3FileClientConfig.java b/lidee-tool/tool-spring-boot-starter-file/src/main/java/com/lideeyunji/tool/framework/file/core/client/s3/S3FileClientConfig.java index 4a58391..22bad21 100644 --- a/lidee-tool/tool-spring-boot-starter-file/src/main/java/com/lideeyunji/tool/framework/file/core/client/s3/S3FileClientConfig.java +++ b/lidee-tool/tool-spring-boot-starter-file/src/main/java/com/lideeyunji/tool/framework/file/core/client/s3/S3FileClientConfig.java @@ -23,7 +23,7 @@ public class S3FileClientConfig implements FileClientConfig { /** * 节点地址 - * 1. MinIO:https://www.iocoder.cn/Spring-Boot/MinIO 。例如说,http://127.0.0.1:9000 + * 1. MinIO:https://www.lidee.cn/Spring-Boot/MinIO 。例如说,http://127.0.0.1:9000 * 2. 阿里云:https://help.aliyun.com/document_detail/31837.html * 3. 腾讯云:https://cloud.tencent.com/document/product/436/6224 * 4. 七牛云:https://developer.qiniu.com/kodo/4088/s3-access-domainname @@ -49,7 +49,7 @@ public class S3FileClientConfig implements FileClientConfig { /** * 访问 Key - * 1. MinIO:https://www.iocoder.cn/Spring-Boot/MinIO + * 1. MinIO:https://www.lidee.cn/Spring-Boot/MinIO * 2. 阿里云:https://ram.console.aliyun.com/manage/ak * 3. 腾讯云:https://console.cloud.tencent.com/cam/capi * 4. 七牛云:https://portal.qiniu.com/user/key diff --git a/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/config/QuartzAutoConfiguration.java b/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/config/QuartzAutoConfiguration.java index 12f08ec..5f3d924 100644 --- a/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/config/QuartzAutoConfiguration.java +++ b/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/config/QuartzAutoConfiguration.java @@ -20,7 +20,7 @@ public class QuartzAutoConfiguration { @Bean public SchedulerManager schedulerManager(Optional scheduler) { if (!scheduler.isPresent()) { - log.info("[定时任务 - 已禁用][参考 https://doc.iocoder.cn/job/ 开启]"); + return new SchedulerManager(null); } return new SchedulerManager(scheduler.get()); diff --git a/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/core/scheduler/SchedulerManager.java b/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/core/scheduler/SchedulerManager.java index e609277..8c7b7d9 100644 --- a/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/core/scheduler/SchedulerManager.java +++ b/lidee-tool/tool-spring-boot-starter-job/src/main/java/com/lideeyunji/tool/framework/quartz/core/scheduler/SchedulerManager.java @@ -139,7 +139,7 @@ public class SchedulerManager { private void validateScheduler() { if (scheduler == null) { throw exception0(NOT_IMPLEMENTED.getCode(), - "[定时任务 - 已禁用][参考 https://doc.iocoder.cn/job/ 开启]"); + "[定时任务 - 已禁用]"); } } diff --git a/lidee-tool/tool-spring-boot-starter-test/src/main/java/com/lideeyunji/tool/framework/test/core/util/RandomUtils.java b/lidee-tool/tool-spring-boot-starter-test/src/main/java/com/lideeyunji/tool/framework/test/core/util/RandomUtils.java index fd280d0..a2166ff 100644 --- a/lidee-tool/tool-spring-boot-starter-test/src/main/java/com/lideeyunji/tool/framework/test/core/util/RandomUtils.java +++ b/lidee-tool/tool-spring-boot-starter-test/src/main/java/com/lideeyunji/tool/framework/test/core/util/RandomUtils.java @@ -104,7 +104,7 @@ public class RandomUtils { } public static String randomURL() { - return "https://www.iocoder.cn/" + randomString(); + return "https://www.lidee.cn/" + randomString(); } @SafeVarargs