提交 e059fd0a authored 作者: chaoyanjun's avatar chaoyanjun

--no commit message

上级 aab0aeb4
......@@ -126,7 +126,9 @@ public class ThriceAuditServiceImpl extends BaseServiceImpl<ThriceAudit, Integer
return arg;
})
.collect(Collectors.toList());
List<ThriceAuditListVo> result = result1.stream().sorted(Comparator.comparing(ThriceAuditListVo::getDealTime).reversed()).collect(Collectors.toList());
List<ThriceAuditListVo> result = result1.stream().filter(v -> v.getDealTime() != null).sorted(Comparator.comparing(ThriceAuditListVo::getDealTime).reversed()).collect(Collectors.toList());
List<ThriceAuditListVo> vos = result1.stream().filter(v -> v.getDealTime() == null).collect(Collectors.toList());
result.addAll(vos);
PageInfo info = new PageInfo();
List<ThriceAuditListVo> vs = new ArrayList<ThriceAuditListVo>();
//分页总个数
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论