Commit b45bd842 authored by 田涛's avatar 田涛

执行记录分页列表

parent aad8d98c
......@@ -19,16 +19,16 @@
</foreach>
</if>
<if test="planPattern != null">
AND cpd.plan_pattern = #{planPattern}
AND cpor.plan_pattern = #{planPattern}
</if>
<if test="executionType != null">
AND cpd.execution_type LIKE #{executionType}
AND cpor.execution_type LIKE #{executionType}
</if>
<if test="startTimeLeft != null">
AND cpd.start_time <![CDATA[ >= ]]> #{implementationTimeLeft}
AND cpor.start_time <![CDATA[ >= ]]> #{implementationTimeLeft}
</if>
<if test="startTimeRight != null">
AND cpd.start_time <![CDATA[ < ]]> #{implementationTimeRight}
AND cpor.start_time <![CDATA[ < ]]> #{implementationTimeRight}
</if>
</where>
</select>
......@@ -65,16 +65,16 @@
</foreach>
</if>
<if test="planPattern != null">
AND cpd.plan_pattern = #{planPattern}
AND cpor.plan_pattern = #{planPattern}
</if>
<if test="executionType != null">
AND cpd.execution_type LIKE #{executionType}
AND cpor.execution_type LIKE #{executionType}
</if>
<if test="startTimeLeft != null">
AND cpd.start_time <![CDATA[ >= ]]> #{implementationTimeLeft}
AND cpor.start_time <![CDATA[ >= ]]> #{startTimeLeft}
</if>
<if test="startTimeRight != null">
AND cpd.start_time <![CDATA[ < ]]> #{implementationTimeRight}
AND cpor.start_time <![CDATA[ < ]]> #{startTimeRight}
</if>
</where>
ORDER BY cpor.id ASC
......
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