dev #2

Merged
dashixiong merged 349 commits from dev into main 2026-02-11 01:55:46 +00:00
260 changed files with 31375 additions and 1052 deletions
Showing only changes of commit 391ed354f8 - Show all commits

View File

@ -513,9 +513,10 @@ public class DDSDataProcessServiceImpl extends AbstractBatteryDataProcessor impl
return stackDeviceId; return stackDeviceId;
} }
} }
stackDeviceId = list.get(0).getParentId(); for (EmsDevicesSetting emsDevicesSetting : list) {
if (stackDeviceId == null || stackDeviceId.isEmpty()) { if (deviceId.equals(emsDevicesSetting.getDeviceId())) {
return stackDeviceId; stackDeviceId = emsDevicesSetting.getParentId();
}
} }
} }
return stackDeviceId; return stackDeviceId;