Commit b4c6aa31 by huangfusuper

完成对补批的操作

parent 520658ba
......@@ -133,6 +133,7 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask
}
task.setRunId(jobTask.getRunId());
task.setTriggerStatus("1");
task.setFlowName(runRecording.getFlowName());
return task;
}).collect(Collectors.toList());
jobTaskService.saveJobTasks(jobTasks);
......@@ -205,6 +206,7 @@ public class RunRecordingAndJobTaskServiceImpl implements RunRecordingAndJobTask
target.setRunId(waitingRecord.getRunId());
BeanUtils.copyProperties(waitingTask, target);
target.setId(null);
target.setTriggerTime(0L);
return target;
}).collect(Collectors.toList());
jobTaskService.saveJobTasks(jobTasks);
......
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