fix: 国内标准关联表attrMap为null的处理
This commit is contained in:
+1
-1
@@ -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 = "";
|
||||
|
||||
Reference in New Issue
Block a user