update:修复军保统计页面bug

This commit is contained in:
Yuan
2025-10-23 15:11:04 +08:00
parent ff5bad9967
commit 94e8850a40
16 changed files with 237 additions and 355 deletions

View File

@@ -187,13 +187,13 @@
from hisbill_history
<where>
<if test="payType!=null and payType!=''">
and PayType = #{payType}
and (PayType = #{payType} or PayType = CAST(#{payType} AS UNSIGNED))
</if>
<if test="startTime!=null and startTime!=''">
and (TradeTime &gt;= #{startTime} or trade_date &gt;= #{startTime})
and trade_date &gt;= #{startTime}
</if>
<if test="endTime!=null and endTime!=''">
and (TradeTime &lt;= #{endTime} or trade_date &lt;= #{endTime})
and trade_date &lt;= #{endTime}
</if>
<if test="likeFiled!=null and likeFiled!=''">
and PlatformTransId like concat('%',concat(#{likeFiled},'%'))