stream分页
List<AccessAreaVo> areaVo = vos.stream()
.skip(pageable.getPageSize() * (pageable.getPageNumber() - 1))
.limit(pageable.getPageSize()).collect(Collectors.toList());
stream分页
List<AccessAreaVo> areaVo = vos.stream()
.skip(pageable.getPageSize() * (pageable.getPageNumber() - 1))
.limit(pageable.getPageSize()).collect(Collectors.toList());