Commit 22a70438 by huangfusuper

补批BUG

parent 7c7c2b03
...@@ -5,6 +5,7 @@ import com.byit.service.RunRecordingService; ...@@ -5,6 +5,7 @@ import com.byit.service.RunRecordingService;
import com.byit.service.WaitingRecordService; import com.byit.service.WaitingRecordService;
import com.byit.service.mapservice.RunRecordingAndJobTaskService; import com.byit.service.mapservice.RunRecordingAndJobTaskService;
import com.byit.thread.BaseThreadRunHelper; import com.byit.thread.BaseThreadRunHelper;
import com.byit.util.lock.RedissLockUtil;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -76,5 +77,6 @@ public class MakeUpFlowThreadRunHelper extends BaseThreadRunHelper { ...@@ -76,5 +77,6 @@ public class MakeUpFlowThreadRunHelper extends BaseThreadRunHelper {
public String getLockName() { public String getLockName() {
return LOCK_NAME; return LOCK_NAME;
} }
} }
...@@ -161,7 +161,7 @@ ...@@ -161,7 +161,7 @@
<include refid="Base_Column_List" /> <include refid="Base_Column_List" />
from run_recording from run_recording
where start_time &gt;= #{startDate} where start_time &gt;= #{startDate}
and end_time &lt;= #{endDate} and start_time &lt;= #{endDate}
<if test="flowIds != null"> <if test="flowIds != null">
and flow_id in ( and flow_id in (
<foreach collection="flowIds" item="flowId" separator=","> <foreach collection="flowIds" item="flowId" separator=",">
......
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