强化导致的bug
This commit is contained in:
+4
-4
@@ -1177,10 +1177,10 @@ public class BussDocumentLibraryEOServiceImpl extends ServiceImpl<BussDocumentLi
|
||||
if (ObjectUtils.isNotEmpty(entry.getValue())) {
|
||||
for (String s : entry.getValue().toString().split(",")) {
|
||||
Map<String, Object> mapTemp1 = new HashMap<>();
|
||||
if (s.equals((String) map1.get("serial_number"))) {
|
||||
standardNameList.add((String) map1.get("serial_number"));
|
||||
mapTemp1.put("title", (String) map1.get("serial_number"));
|
||||
mapTemp1.put("id", (String) map1.get("id"));
|
||||
if (s.equals(StringUtils.valueOf(map1.get("serial_number")))) {
|
||||
standardNameList.add(StringUtils.valueOf(map1.get("serial_number")));
|
||||
mapTemp1.put("title", StringUtils.valueOf(map1.get("serial_number")));
|
||||
mapTemp1.put("id", StringUtils.valueOf(map1.get("id")));
|
||||
if (ObjectUtils.isNotEmpty(mapTemp1)) {
|
||||
listStandard.add(mapTemp1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user