内存分页(通过stream实现)
内存分页(通过stream实现)
List<VehiclelVO> pageResult = resultList.stream()
.sorted(Comparator.comparingLong(VehiclelVO::getOffTime)) // 排序
.skip(页面展示条数 * (当前页 - 1))
.limit(页面条数)
.collect(Collectors.toList());