|
|
@ -43,6 +43,12 @@
|
|
|
|
<if test="depart!=null and depart!=''">
|
|
|
|
<if test="depart!=null and depart!=''">
|
|
|
|
AND depart = #{depart}
|
|
|
|
AND depart = #{depart}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="checkStartTime != null and checkStartTime != ''"><!-- 开始时间检索 -->
|
|
|
|
|
|
|
|
AND check_start_time >= #{checkStartTime}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="checkEndTime != null and checkEndTime != ''"><!-- 结束时间检索 -->
|
|
|
|
|
|
|
|
AND check_end_time <= #{checkEndTime}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
ORDER BY create_time DESC
|
|
|
|
ORDER BY create_time DESC
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
@ -62,6 +68,12 @@
|
|
|
|
<if test="depart!=null and depart!=''">
|
|
|
|
<if test="depart!=null and depart!=''">
|
|
|
|
AND depart = #{depart}
|
|
|
|
AND depart = #{depart}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="checkStartTime != null and checkStartTime != ''"><!-- 开始时间检索 -->
|
|
|
|
|
|
|
|
AND check_start_time >= #{checkStartTime}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="checkEndTime != null and checkEndTime != ''"><!-- 结束时间检索 -->
|
|
|
|
|
|
|
|
AND check_end_time <= #{checkEndTime}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
AND check_state != '3'
|
|
|
|
AND check_state != '3'
|
|
|
|
</trim>
|
|
|
|
</trim>
|
|
|
|
ORDER BY create_time DESC
|
|
|
|
ORDER BY create_time DESC
|
|
|
|