update 优化 重构将 WorkflowUtils 工具类改为 FlwCommonService 更通用的业务处理

This commit is contained in:
疯狂的狮子Li
2025-03-06 17:22:24 +08:00
parent eb96432a2f
commit 2a231ec72c
8 changed files with 299 additions and 223 deletions

View File

@@ -102,7 +102,7 @@ public class TokenController {
Long userId = LoginHelper.getUserId();
scheduledExecutorService.schedule(() -> {
remoteMessageService.publishMessage(userId, "欢迎登录RuoYi-Cloud-Plus微服务管理系统");
remoteMessageService.publishMessage(List.of(userId), "欢迎登录RuoYi-Cloud-Plus微服务管理系统");
}, 3, TimeUnit.SECONDS);
return R.ok(loginVo);
}