forked from p4vkf3rot/j2ee
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
539 B
23 lines
539 B
|
|
package com.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
|
|
import com.entity.UsersEntity;
|
|
|
|
/**
|
|
* 用户
|
|
*/
|
|
public interface UsersDao extends BaseMapper<UsersEntity> {
|
|
|
|
List<UsersEntity> selectListView(@Param("ew") Wrapper<UsersEntity> wrapper);
|
|
|
|
List<UsersEntity> selectListView(Pagination page,@Param("ew") Wrapper<UsersEntity> wrapper);
|
|
|
|
}
|