无标题文章
2020-03-12 本文已影响0人
那一半橘子
List转成List<String>形式
List idList = dtoList.stream().map(e -> e.getParentChannelId()).filter(x -> x!=null).collect(Collectors.toList());
List转成map形式
Map map = parentDtoList.stream().collect(Collectors.toMap(w -> w.getId(), w -> w.getName()));