List<DlisLoanInfoDetailTrace> list = traceList.stream().sorted(Comparator.comparing(DlisLoanInfoDetailTrace::getCreatedDate).reversed()).collect(Collectors.toList());
流排序--
最新推荐文章于 2024-11-13 20:43:20 发布
List<DlisLoanInfoDetailTrace> list = traceList.stream().sorted(Comparator.comparing(DlisLoanInfoDetailTrace::getCreatedDate).reversed()).collect(Collectors.toList());