fix 修复错误的远程调用导致登录异常 ;

This commit is contained in:
Michelle.Chung
2023-07-25 10:11:04 +08:00
parent 52955e5290
commit 054ded428f
8 changed files with 34 additions and 17 deletions

View File

@@ -63,5 +63,11 @@ public interface RemoteUserService {
*/
String selectUserNameById(Long userId);
void recordLoginInfo(Long userId);
/**
* 更新用户信息
*
* @param remoteUserBo 用户信息
*/
void updateUser(RemoteUserBo remoteUserBo);
}