fix: 信用卡账单统计,bug修复。

This commit is contained in:
tianyongbao
2024-05-23 17:24:34 +08:00
parent 6324cbc89e
commit c5616a2417
3 changed files with 6 additions and 0 deletions

View File

@@ -60,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="name != null and name != ''"> and a.name like '%'|| #{name}||'%'</if>
<if test="type != null and type != ''"> and a.type = #{type}</if>
<if test="state != null and state != ''"> and a.state = #{state}</if>
<if test="accountId != null and accountId != ''"> and a.account_id = #{accountId}</if>
</where>
<!-- 数据范围过滤 -->
${params.dataScope}