springboot 整合 pagehelper

时间:2020-09-18 02:53:05   收藏:0   阅读:50

pom.xml

        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.13</version>
        </dependency>

使用

 int start=1;
        int end=10;
        PageHelper.startPage(start,end);
        List<ChannelSalerDTO> channelSalerDTOS = channelSalerMapper.selectAllSalerByPage(new ChannelSalerDTO());

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!