|
|
@@ -101,7 +101,7 @@ public class TextdictInfoServiceImpl extends ServiceImpl<TextdictInfoMapper, Tex
|
|
|
}
|
|
|
}
|
|
|
if (textdict != null && !textdict.isEmpty()) {
|
|
|
- Map<String, TextdictInfoVO> map = textdict.stream().collect(Collectors.toMap(item -> item.getProjectId() + item.getTabId() + item.getColKey() + item.getColName(), item -> item, (v1, v2) -> dqid.contains(v2.getId() + "") ? v2 : v1));
|
|
|
+ Map<String, TextdictInfoVO> map = textdict.stream().collect(Collectors.toMap(item -> item.getProjectId() + item.getTabId() + item.getColKey() + item.getColName() + item.getSigRoleId(), item -> item, (v1, v2) -> dqid.contains(v2.getId() + "") ? v2 : v1));
|
|
|
textdict = new ArrayList<>(map.values());
|
|
|
for (TextdictInfoVO vo : textdict) {
|
|
|
Elements keyName = doc.getElementsByAttributeValue("keyname", vo.getColKey());
|