fix: 国内标准关联表attrMap为null的处理

This commit is contained in:
wxyclub
2023-11-29 10:48:25 +08:00
parent db39ce090c
commit a0b87be9e5
@@ -762,7 +762,7 @@ public class SarStandardsInfoServiceImpl extends ServiceImpl<SarStandardsInfoDao
// 查询属性表数据
if (StringUtils.isNotBlank(fieldInfo)) {
Map<String, Object> getAttrMap = sarStandAttrInfoEODao.selectStandFieldAndData(fieldInfo, row.getId());
if(getAttrMap.get("FBGBJBD")!=null){
if(getAttrMap!= null && getAttrMap.get("FBGBJBD")!=null){
if(StringUtils.isNotBlank(getAttrMap.get("FBGBJBD").toString())){
String[] split = getAttrMap.get("FBGBJBD").toString().split(",");
String fileId = "";