欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mybatis plus多条件分页查询

程序员文章站 2024-03-05 23:13:43
...
IPage<Type> typess = this.typeService.page(new Page<>(page,pagesize),
     new QueryWrapper<Type>().lambda()
         .eq(Type::getStatus,0)
         .like(!StringUtils.isEmpty(name), Type::getName , name)
         .like(!StringUtils.isEmpty(remark), Type::getRemark , remark)
     );

//total:总数,size:当前分页条数,current:当前页数,pages:有几页,searchCount:搜索计数?,records:数据

需要引入的包

import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;

Type为实体类

相关标签: mybatis plus