lxw
2023-11-10 33a9db243709db2ce7ef081ab18be35d1b80cf3c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.whyc.mapper;
 
import com.whyc.pojo.UserInf;
 
import java.util.List;
 
public interface DocUserMapper extends CustomMapper<UserInf>{
    //查询所有用户信息
    List<UserInf> getAllUser(UserInf userInf);
    //查询密码
    String selectSnId(String name);
    //查询所有用户(权限管理用)
    List<UserInf> getAllDocUser();
}