#
Junjie
1 天以前 caf3bdd9bbb629c8bc6f1a19b3ccdf441bf7650c
src/main/java/com/zy/system/service/impl/UserServiceImpl.java
@@ -9,4 +9,18 @@
@Service("userService")
public class UserServiceImpl extends ServiceImpl<UserMapper, User> implements UserService {
    @Override
    public User getByMobileWithSecurity(String mobile) {
        return baseMapper.selectByMobileWithSecurity(mobile);
    }
    @Override
    public User getByIdWithSecurity(Long id) {
        return baseMapper.selectByIdWithSecurity(id);
    }
    @Override
    public User getByPasskeyCredentialId(String credentialId) {
        return baseMapper.selectByPasskeyCredentialId(credentialId);
    }
}