|
@@ -64,8 +64,10 @@ public class ProjectLogServiceImpl extends ServiceImpl<IProjectLogMapper, Projec
|
|
|
Set<String> numSet = new HashSet<>();
|
|
|
Set<String> numListSet = page.getRecords().stream().map(ProjectLog::getNum).collect(Collectors.toSet());
|
|
|
for (String num : numListSet) {
|
|
|
- List<String> list = JSONObject.parseObject(num, List.class);
|
|
|
- numSet.addAll(list);
|
|
|
+ if(StringUtils.isNotBlank(num)){
|
|
|
+ List<String> list = JSONObject.parseObject(num, List.class);
|
|
|
+ numSet.addAll(list);
|
|
|
+ }
|
|
|
}
|
|
|
HashMap<String,String> sceneNameMap = new HashMap<>();
|
|
|
if(numSet.size() >0){
|