标签:sel bsp 查询 turn nbsp ati rev rgb sele
1)注册分页插件(@Configuration)
@Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); }
2) 使用
@Test void testPage(){ Page<User> page = new Page<>(1,1); //分页(当前页,每页大小) userMapper.selectPage(page, null); page.getRecords().forEach(System.out::println); // 获取查询到的数据 System.out.println(page.getCurrent());//获取当前页 System.out.println(page.getPages());//获取总页数 System.out.println(page.getSize());//获取每页显示的记录数 System.out.println(page.getTotal()); // 获取总记录数 System.out.println(page.hasNext());//判断是否存在下一页 System.out.println(page.hasPrevious()); // 判断是否存在上一页 }
标签:sel bsp 查询 turn nbsp ati rev rgb sele
原文地址:https://www.cnblogs.com/pikachu511/p/14460000.html