使用Wrapper条件类实现分页
Posted hq0422
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Wrapper条件类实现分页相关的知识,希望对你有一定的参考价值。
server层:
Wrapper<Ship> wrapper = new EntityWrapper<>();//条件类 wrapper.where("user_id=0",uid);//增加条件 Page<Ship> shipPage = new Page<>(pageNum, pageSize);//分页类 List<Ship> ships = shipMapper.selectPages(shipPage, wrapper);//去dao return new PageResult<>(shipPage.getTotal(), ships);
daoMapper层:
List<Ship> selectPages(Page<Ship> page, @Param("ew") Wrapper<Ship> wrapper);
mapper.xml层:
<select id="selectPages" resultMap="BaseResultMap"> select s.*,f.fsa_flag from tb_ship s left join tb_flag_state_authority f on s.fsa_id=f."id" <where> $ew.sqlSegment </where> </select>
以上是关于使用Wrapper条件类实现分页的主要内容,如果未能解决你的问题,请参考以下文章
MyBatis-Plus——使用查询构造器Wrapper & 简单分页操作
MyBatis-Plus——使用查询构造器Wrapper & 简单分页操作