jiangping
2023-09-13 cfa6aa1bba4e4c55a8f88174aa93afab86bb33cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package doumeemes.dao.system;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import doumeemes.dao.system.dto.QuerySystemUserDTO;
import doumeemes.dao.system.model.SystemUser;
import doumeemes.dao.system.vo.SystemUserListVO;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface SystemUserMapper extends BaseMapper<SystemUser> {
 
    /**
     * 查询用户列表
     * @author Eva.Caesar Liu
     * @date 2022/04/18 18:12
     */
    List<SystemUserListVO> selectManageList(@Param("dto") QuerySystemUserDTO dto, @Param("orderByClause") String orderByClause);
 
}