Merge branch 'develop_migration' into 'develop_master'

feat: There is no way the, 优化ES

See merge request LiuChao/foton-slrs-system-rest!490
This commit is contained in:
super_liu
2022-05-05 17:33:44 +08:00
3 changed files with 9 additions and 0 deletions
@@ -193,6 +193,9 @@ public class SendBussMQService {
fieldValue = infoMap.get(fieldFilter).toString();
}
}
if(fieldValue.contains("null")){
fieldValue = fieldValue.replace("null","");
}
}
saveMap.put(field+"Name",fieldValue);
}
@@ -239,6 +239,9 @@ public class SendLawsMQService {
fieldValue = infoMap.get(fieldFilter).toString();
}
}
if(fieldValue.contains("null")){
fieldValue = fieldValue.replace("null","");
}
}
saveMap.put(field+"Name",fieldValue);
}
@@ -193,6 +193,9 @@ public class SendStandMQService {
fieldValue = infoMap.get(field).toString();
}
}
if(fieldValue.contains("null")){
fieldValue = fieldValue.replace("null","");
}
}
saveMap.put(field+"Name",fieldValue);
}catch (Exception e){