fix:信用卡账单功能完善。

This commit is contained in:
tianyongbao
2025-05-07 14:31:09 +08:00
parent 33c0ae236e
commit c6534ea86a
7 changed files with 53 additions and 2 deletions

View File

@@ -67,6 +67,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="name != null and name != ''"> and a.name like '%'|| #{name}||'%'</if>
<if test="code != null and code != ''"> and a.code = #{code}</if>
<if test="standardId != null "> and a.standard_id = #{standardId}</if>
<if test="lastTradingDay!=null and lastTradingDay !=''">
and to_char(a.last_trading_day, 'yyyy-MM-dd')>=#{lastTradingDay}
</if>
</where>
order by a.create_time desc
</select>