This commit is contained in:
haoxr
2024-12-01 21:31:09 +08:00
17 changed files with 175 additions and 7 deletions

View File

@@ -158,4 +158,12 @@ 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);
}