feat: 微信登录功能开发
This commit is contained in:
@@ -72,4 +72,9 @@ public class User extends BaseEntity {
|
||||
* 是否删除(0-否 1-是)
|
||||
*/
|
||||
private Integer isDeleted;
|
||||
|
||||
/**
|
||||
* 微信openid
|
||||
*/
|
||||
private String openId;
|
||||
}
|
||||
@@ -56,4 +56,7 @@ public class UserForm {
|
||||
@NotEmpty(message = "用户角色不能为空")
|
||||
private List<Long> roleIds;
|
||||
|
||||
@Schema(description="微信openId")
|
||||
private String openId;
|
||||
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -445,4 +445,14 @@ public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements Us
|
||||
}
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据openId获取用户信息
|
||||
* @param openId openId
|
||||
* @return {@link User}
|
||||
*/
|
||||
@Override
|
||||
public User getUserByOpenId(String openId) {
|
||||
return this.getOne(new LambdaQueryWrapper<User>().eq(User::getOpenId, openId));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user