This commit is contained in:
zt
2025-09-10 17:34:49 +08:00
parent 4d627af3a1
commit 697beb67c4
8 changed files with 331 additions and 18 deletions

View File

@ -107,10 +107,10 @@ public class AuthController {
// 登录
LoginVo loginVo = IAuthStrategy.login(body, client, grantType);
Long userId = LoginHelper.getUserId();
scheduledExecutorService.schedule(() -> {
chatGroupService.createSystem(userId,client.getClientKey());
}, 5, TimeUnit.SECONDS);
// Long userId = LoginHelper.getUserId();
// scheduledExecutorService.schedule(() -> {
// chatGroupService.createSystem(userId,client.getClientKey());
// }, 5, TimeUnit.SECONDS);
return R.ok(loginVo);
}