fix:检查近6个月统计

pg_adapter
wangxy 6 months ago
parent 4bbc20243e
commit 5cd9cd9010

@ -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 &gt;= #{checkStartTime}
</if>
<if test="checkEndTime != null and checkEndTime != ''"><!-- 结束时间检索 -->
AND check_end_time &lt;= #{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 &gt;= #{checkStartTime}
</if>
<if test="checkEndTime != null and checkEndTime != ''"><!-- 结束时间检索 -->
AND check_end_time &lt;= #{checkEndTime}
</if>
AND check_state != '3' AND check_state != '3'
</trim> </trim>
ORDER BY create_time DESC ORDER BY create_time DESC

Loading…
Cancel
Save