list map互相转换
List<PvUvBo> filterPvUvMap = pvUvMap.values().stream().collect(Collectors.toList());
Map<String, PvUvBo> pvUvMap = pvUvBoList.stream().
collect(Collectors.toMap(PvUvBo::getSourceCode, Function.identity()));
List<PvUvBo> filterPvUvMap = pvUvMap.values().stream().collect(Collectors.toList());
Map<String, PvUvBo> pvUvMap = pvUvBoList.stream().
collect(Collectors.toMap(PvUvBo::getSourceCode, Function.identity()));