mybatisplus page排序_【记录】Mybatis-plus中Page插件 快速进行分页操作

本文介绍了如何使用Mybatis-plus的Page插件进行高效的分页查询,通过示例展示从添加pom依赖,定义Bo实体,到ServiceImpl接口及Mapper接口的方法,最后实现按投诉时间降序排列的查询。简化了传统分页查询的繁琐步骤。
摘要由CSDN通过智能技术生成

使用mybatis-plus 封装好的Page插件,可以很方便的帮助我们进行查询分页,不用再写过多冗余代码,强烈推荐

以下是本人使用的例子:

pom依赖

com.baomidou

mybatis-plus-generator

Bo实体

@Datapublic classComplaintCompBo {

@ApiModelProperty(value= "车牌号",example = "sss")privateString plateNum;

@ApiModelProperty(value= "驾驶员姓名",example = "XXXX")privateString driverName;

@ApiModelProperty(value= "投诉开始时间",example = "2020-06-08 13:00:00")privateString complaintBeginTime;

@ApiModelProperty(value= "投诉结束时间",example = "2020-06-08 14:00:00")privateString complaintEndTime;

@ApiModelProperty(value= "企业ID",example = "1111111111")privateString companyId;

@ApiModelProperty(value="当前页数" ,example = "1", required = true)privateInteger current;

@ApiModelProperty(value="每页条数" ,example = "10", required = true)privateInteger size;

}

serviceImpl接口

@Override

public HttpResult> pageRelationComp(ComplaintCompBo complaintCompBo) {

Page page = new Page(complaintCompBo.getCurrent(),complaintCompBo.getSize());

Page pageList = mapper.getPassengerComplaintCompList(page,complaintCompBo);

return HttpResult.success(pageList);

}

Mapper 接口方法

Page getPassengerComplaintCompList(Page page,@Param("condition") ComplaintCompBo complaintCompBo);

关联的查询语句

SELECT

t1.*

FROM

ct_taxi_rh_pers_opemng_sti_passager_complaint t1ORDER BY t1.complaint_time desc

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值