示例
List<String> titles = titleList.stream().map(e -> e.get(ConstantUtil.TITLE)).collect(Collectors.toList());
优化:List<String> fieldList = mountTableVoList.stream().map(ResMountTable::getFieldName).collect(Collectors.toList());