update:对账消息推送,军保账单统计,退款数据统计

This commit is contained in:
Yuan
2025-10-20 14:39:29 +08:00
parent 9fb2ea9cb4
commit ff5bad9967
35 changed files with 3649 additions and 100 deletions

View File

@@ -190,10 +190,10 @@
and PayType = #{payType}
</if>
<if test="startTime!=null and startTime!=''">
and TradeTime &gt;= #{startTime}
and (TradeTime &gt;= #{startTime} or trade_date &gt;= #{startTime})
</if>
<if test="endTime!=null and endTime!=''">
and TradeTime &lt;= #{endTime}
and (TradeTime &lt;= #{endTime} or trade_date &lt;= #{endTime})
</if>
<if test="likeFiled!=null and likeFiled!=''">
and PlatformTransId like concat('%',concat(#{likeFiled},'%'))