jiangping
2023-08-10 e3523883aadf423cb78647c38f0648c2143d2a89
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);
 
}