账号切换实现

This commit is contained in:
张松
2025-04-08 10:36:28 +08:00
parent dbaa79b471
commit 6bade716cb
3 changed files with 81 additions and 3 deletions

View File

@@ -11,4 +11,10 @@ public interface AuthorizationService {
Object getCaptcha();
LoginVO login(SysLoginDTO loginDTO, String platformType);
/**
* 切换登录用户
* @param sysUserId 系统用户id
*/
void switchTo(Long sysUserId);
}