Commit 2a98d043 authored by W_Y's avatar W_Y

查询处理完成总任务

parent f655d8ba
......@@ -122,10 +122,10 @@
and (t.task_no = #{taskNoOrName} || t.task_name like concat('%',#{taskNoOrName},'%'))
</if>
<if test="taskBeginTime != null and taskBeginTime != ''">
and t.task_begin_time = #{taskBeginTime}
and t.task_begin_time >= #{taskBeginTime}
</if>
<if test="taskEndTime != null and taskEndTime != ''">
and t.task_end_time = #{taskEndTime}
and t.task_end_time &lt;= #{taskEndTime}
</if>
</where>
</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