2023年11月19日 修改导出

This commit is contained in:
bai 2023-11-19 20:12:38 +08:00
parent 98d9a51e6c
commit 058a61ca4f
1 changed files with 3 additions and 1 deletions

View File

@ -227,7 +227,9 @@ public class Export extends BaseExport {
allListMap.put(k,list);
}
}else{
allListMap.put(k,Lists.newArrayList());
if(!allListMap.containsKey(k)){
allListMap.put(k,Lists.newArrayList());
}
}
})
);