fix: 自测bug问题修复。

This commit is contained in:
tianyongbao
2024-07-24 16:31:59 +08:00
parent 046ca6c7c9
commit 77ccfcfe9a
5 changed files with 16 additions and 4 deletions

View File

@@ -65,6 +65,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="state != null and state != ''"> and a.state = #{state}</if>
<if test="status != null and status != ''"> and a.status = #{status}</if>
<if test="accountId != null and accountId != ''"> and a.account_id = #{accountId}</if>
<if test="repayFlag != null and repayFlag != ''"> and bcl.debit_type in('1','2','3')</if>
</where>
<!-- 数据范围过滤 -->
${params.dataScope}

View File

@@ -76,6 +76,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="creditCardId != null "> and a.id = #{creditCardId}</if>
<if test="lendType != null and lendType != ''"> and a.lend_type = #{lendType}</if>
<if test="status != null and status != ''"> and a.status = #{status}</if>
<if test="repayFlag != null and repayFlag != ''"> and a.debit_type in('1','2','3')</if>
</where>
<!-- 数据范围过滤 -->
${params.dataScope}