Commit 4a24f8ee by huangfusuper

Merge remote-tracking branch 'origin/developer' into developer

parents 6f095b37 2173885e
...@@ -522,6 +522,7 @@ public class ApiFlowServiceImpl implements ApiFlowService { ...@@ -522,6 +522,7 @@ public class ApiFlowServiceImpl implements ApiFlowService {
RunRecording newRunRecording = new RunRecording(); RunRecording newRunRecording = new RunRecording();
BeanUtils.copyProperties(flow, newRunRecording); BeanUtils.copyProperties(flow, newRunRecording);
newRunRecording.setFlowVersionName(flow.getVersionName());
newRunRecording.setTriggerTime(triggerTime); newRunRecording.setTriggerTime(triggerTime);
newRunRecording.setReRunId(runRecording.getRunId()); newRunRecording.setReRunId(runRecording.getRunId());
newRunRecording.setRunId(reRunId); newRunRecording.setRunId(reRunId);
......
...@@ -196,7 +196,7 @@ ...@@ -196,7 +196,7 @@
<select id="exist" resultType="java.lang.Integer"> <select id="exist" resultType="java.lang.Integer">
select count(1) select count(1)
from flow_status_snapshoot from flow_status_snapshoot
where 'day' = #{date} and `hour` = #{hour} where `day` = #{date} and `hour` = #{hour}
</select> </select>
<select id="findByTime" resultMap="BaseResultMap"> <select id="findByTime" resultMap="BaseResultMap">
select select
......
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