添加ID登录业务方法

This commit is contained in:
wanggeng888 2021-04-08 22:52:58 +08:00
parent d25463180a
commit 9611a5fc54

View File

@ -123,4 +123,9 @@ public class AppSignServiceImpl extends BaseAppSignService implements IAppSignSe
} }
} }
@Override
public String userIdSign(String userId) throws UnsupportedEncodingException {
UserPO userPO = userService.getPO(userId);
return getToken(userPO);
}
} }