This commit is contained in:
2026-01-20 10:14:46 +08:00

View File

@@ -1010,7 +1010,7 @@ public class TaskServiceImpl implements ITaskService {
jsonObject.put("data", new ArrayList<>());
return SdmResponse.success(jsonObject);
}
List<String> runIdList = performanceList.stream().filter(performance -> StringUtils.isNotBlank(performance.getRunId())).map(PerformanceNodePo::getUuid).toList();
List<String> runIdList = performanceList.stream().filter(performance -> StringUtils.isNotBlank(performance.getRunId())).map(PerformanceNodePo::getRunId).toList();
Map<String, SimulationRun> runMap = Map.of();
if (CollectionUtils.isNotEmpty(runIdList)){
List<SimulationRun> runList = simulationRunService.lambdaQuery().in(SimulationRun::getUuid, runIdList).list();