package com.panzhihua.sangeshenbian.dao;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.panzhihua.sangeshenbian.model.entity.SystemUser;
|
import com.panzhihua.sangeshenbian.warpper.SystemUserList;
|
import com.panzhihua.sangeshenbian.warpper.SystemUserListVo;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/2/18 22:29
|
*/
|
@Mapper
|
public interface SystemUserMapper extends BaseMapper<SystemUser> {
|
|
/**
|
* 获取列表数据
|
* @param query
|
* @return
|
*/
|
IPage<SystemUserListVo> list(Page page, @Param("accountLevel") Integer accountLevel, @Param("query") SystemUserList query);
|
}
|