Commit b45bd842 authored by 田涛's avatar 田涛

执行记录分页列表

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