1. 比較直接的方式
result.stream().distinct().collect(Collectors.toList())
2. 根據集合物件的某個屬性去重
result.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(ProcessCarbonCopyPreAnalysisVO::getId))), ArrayList::new));
3. 根據集合物件的多個屬性去重
result.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() ->
new TreeSet<>(Comparator.comparing(item -> item.getName() + "_" + item.getCode()))), ArrayList::new));