获取List集合对象中某一列属性值
例:获取disposeList集合中CorpusMarkPage对象中的responseId属性,生成新的List集合
List<String> responseIdList = disposeList.stream().map(CorpusMarkPage::getResponseId).collect(Collectors.toList());
例:获取disposeList集合中CorpusMarkPage对象中的responseId属性,生成新的List集合
List<String> responseIdList = disposeList.stream().map(CorpusMarkPage::getResponseId).collect(Collectors.toList());