组织变更

This commit is contained in:
Administrator 2025-08-08 18:00:16 +08:00
parent 6ac7e17b5f
commit ea0cd475d4
1 changed files with 2 additions and 2 deletions

View File

@ -130,8 +130,8 @@ public class SyncDepartmentChanges implements EsbServerlessRpcRemoteInterface {
}
//修改1
if (CollectionUtils.isNotEmpty(addedChanges)) {
for (Map<String, Object> modifiedChange : modifiedChanges) {
String modified = null!=modifiedChange.get("changed")?String.valueOf(modifiedChange.get("changed").toString()):"";
for (Map<String, Object> addedChange : addedChanges) {
String modified = null!=addedChange.get("changed")?String.valueOf(addedChange.get("changed").toString()):"";
// 去掉大括号并按逗号分割
String[] entries = modified.substring(1, modified.length() - 1).split(", ");
// 使用 Stream 转换为 Map