// 对记录进行分页操作 List<YtDeviceStatus> records = list.stream() .skip(startIndex)//跳过startIndex个元素,从startIndex+1开始 .limit(pageSize)//限制显示大小,只处理pageSize个元素 .collect(Collectors.toList());//将流中的元素收集到List<YtDeviceStatus> == 获取当前页记录