stream()根据List<Map<String, Object>> Map key去重
List<Map<String, Object>> vin = list.stream().filter(distinctByKey(o -> o.get(“vin”))).collect(Collectors.toList());public static Predicate distinctByKey(Function<? super T, Object> keyExtractor) {Map