fix:检查近6个月统计

pg_adapter
wangxy 6 months ago
parent 5cd9cd9010
commit 1a84339de2

@ -43,6 +43,12 @@
<if test="depart!=null and depart!=''">
AND depart = #{depart}
</if>
<if test="totalScore!=null and totalScore!=''">
AND total_score = #{totalScore}
</if>
<if test="realScore!=null and realScore!=''">
AND real_score = #{realScore}
</if>
<if test="checkStartTime != null and checkStartTime != ''"><!-- 开始时间检索 -->
AND check_start_time &gt;= #{checkStartTime}
</if>
@ -68,6 +74,12 @@
<if test="depart!=null and depart!=''">
AND depart = #{depart}
</if>
<if test="totalScore!=null and totalScore!=''">
AND total_score = #{totalScore}
</if>
<if test="realScore!=null and realScore!=''">
AND real_score = #{realScore}
</if>
<if test="checkStartTime != null and checkStartTime != ''"><!-- 开始时间检索 -->
AND check_start_time &gt;= #{checkStartTime}
</if>

Loading…
Cancel
Save