【8.0】【auth】更新创建登录用户信息的业务

pull/57/head
fengshuonan 2023-09-01 01:17:41 +08:00
parent dbaf847eeb
commit c325e061ba
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ public class AuthServiceImpl implements AuthServiceApi {
UserValidateDTO userValidateDTO = sysUserServiceApi.getUserLoginValidateDTO(userId);
// 创建登录用户
loginUser = new LoginUser(userValidateDTO.getUserId(), token);
loginUser = new LoginUser(userValidateDTO.getUserId(), userValidateDTO.getAccount(), token, userValidateDTO.getTenantId());
// 创建用户会话信息
sessionManagerApi.updateSession(token, loginUser);