mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 05:09:48 +08:00
Co-authored-by: juzimao <578961953@qq.com>
This commit is contained in:
parent
6824c72990
commit
0680282d69
@ -114,8 +114,8 @@
|
||||
<if test="searchVal != null and searchVal != ''">
|
||||
and instance.name like concat('%', #{searchVal}, '%')
|
||||
</if>
|
||||
<if test="startTime != null ">
|
||||
and instance.start_time > #{startTime} and instance.start_time <![CDATA[ <=]]> #{endTime}
|
||||
<if test="startTime != null and endTime != null ">
|
||||
and instance.start_time <![CDATA[ >= ]]> #{startTime} and instance.start_time <![CDATA[ <= ]]> #{endTime}
|
||||
</if>
|
||||
<if test="states != null and states.length > 0">
|
||||
and instance.state in
|
||||
|
Loading…
Reference in New Issue
Block a user