#
Junjie
昨天 caf3bdd9bbb629c8bc6f1a19b3ccdf441bf7650c
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zy.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.system.entity.User;
 
public interface UserService extends IService<User> {
 
    User getByMobileWithSecurity(String mobile);
 
    User getByIdWithSecurity(Long id);
 
    User getByPasskeyCredentialId(String credentialId);
}