SpringBoot-Demo-CRUD
SpringBoot-Demo-CRUD copied to clipboard
SpringBoot2.X整合MyBatis-Plus实现图书管理系统的增删改查
Results
1
SpringBoot-Demo-CRUD issues
Sort by
recently updated
recently updated
newest added
``` java @GetMapping("{currentPage}/{pageSize}") public Result getPage(@PathVariable int currentPage,@PathVariable int pageSize,Book book){ IPage page = bookService.getPage(currentPage, pageSize,book); //如果当前页码值大于总页码数,那么重新执行查询操作,使用最大页码值作为当前页码值。 if (currentPage > page.getPages()){ page = bookService.getPage((int)page.getPages(),pageSize); } return new Result(true,bookService.getPage(currentPage,pageSize,book)); } ```...