feat: 微信登录功能开发

This commit is contained in:
wangtaocs
2024-11-29 11:09:56 +08:00
parent d2f240776e
commit d24dafc1fb
14 changed files with 164 additions and 2 deletions

View File

@@ -158,4 +158,11 @@ public interface UserService extends IService<User> {
* @return {@link List<Option<String>>} 用户选项列表
*/
List<Option<String>> listUserOptions();
/**
* 根据openId获取用户信息
* @param openId openId
* @return {@link User}
*/
User getUserByOpenId(String openId);
}