|
@@ -70,7 +70,7 @@
|
|
|
and checkjob.feedback = #{feedback}
|
|
|
</if>
|
|
|
<if test="status ==null and startTimeStart != null ">
|
|
|
- and checkjob.start_time <![CDATA[>=]]>; #{startTimeStart}
|
|
|
+ and checkjob.start_time <![CDATA[>=]]>#{startTimeStart}
|
|
|
</if>
|
|
|
<if test="status ==null and startTimeEnd != null">
|
|
|
and checkjob.start_time <![CDATA[<=]]> #{startTimeEnd}
|
|
@@ -98,7 +98,7 @@
|
|
|
and checkjob.actual_start_time = #{actualStartTime}
|
|
|
</if>
|
|
|
<if test="actualEndTimeStart != null">
|
|
|
- and checkjob.actual_end_time <![CDATA[>=]]>; #{actualEndTimeStart}
|
|
|
+ and checkjob.actual_end_time <![CDATA[>=]]> #{actualEndTimeStart}
|
|
|
</if>
|
|
|
<if test="actualEndTimeEnd != null">
|
|
|
and checkjob.actual_end_time <![CDATA[<=]]> #{actualEndTimeEnd}
|
|
@@ -125,7 +125,7 @@
|
|
|
and checkjob.update_user_name = #{updateUserName}
|
|
|
</if>
|
|
|
<if test="createdTimeStart != null">
|
|
|
- and checkjob.created_time <![CDATA[>=]]>; #{createdTimeStart}
|
|
|
+ and checkjob.created_time <![CDATA[>=]]> #{createdTimeStart}
|
|
|
</if>
|
|
|
<if test="createdTimeEnd != null">
|
|
|
and checkjob.created_time <![CDATA[<=]]> #{createdTimeEnd}
|
|
@@ -134,7 +134,7 @@
|
|
|
and checkjob.created_time = #{createdTime}
|
|
|
</if>
|
|
|
<if test="updateTimeStart != null">
|
|
|
- and checkjob.update_time <![CDATA[>=]]>; #{updateTimeStart}
|
|
|
+ and checkjob.update_time <![CDATA[>=]]> #{updateTimeStart}
|
|
|
</if>
|
|
|
<if test="updateTimeEnd != null">
|
|
|
and checkjob.update_time <![CDATA[<=]]> #{updateTimeEnd}
|