Commit 46e550a9 by huangfusuper

修改 根据RunID查询工作流实例的Mapper错误

parent 2174042b
...@@ -154,6 +154,8 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask ...@@ -154,6 +154,8 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask
log.info("-------查询等待节点成功,查询对应的等待节点成功,开始保存对应的等待节点{}-------",allByWaitId); log.info("-------查询等待节点成功,查询对应的等待节点成功,开始保存对应的等待节点{}-------",allByWaitId);
List<JobTask> jobTasks = allByWaitId.stream().map(waitingTask -> { List<JobTask> jobTasks = allByWaitId.stream().map(waitingTask -> {
JobTask target = new JobTask(); JobTask target = new JobTask();
target.setTriggerStatus("1");
target.setRunId(waitingRecord.getRunId());
BeanUtils.copyProperties(waitingTask, target); BeanUtils.copyProperties(waitingTask, target);
return target; return target;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment