lxw
2023-11-16 0efa050f7645da4d1d42251194b8041d5e2a390f
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();
}