This commit is contained in:
linfso 2025-03-11 22:59:46 +08:00
parent 2b645affc1
commit cf17ac5e22
2 changed files with 4 additions and 4 deletions

View File

@ -68,10 +68,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
<if test="params.beginCurMoneyRate != null and params.beginCurMoneyRate != ''">
and (a.cur_money/a.credit_money) <![CDATA[ >= ]]> #{params.beginCurMoneyRate}
and (a.cur_money/a.credit_money)*100 <![CDATA[ >= ]]> #{params.beginCurMoneyRate}
</if>
<if test="params.endCurMoneyRate != null and params.endCurMoneyRate != ''">
and (a.cur_money/a.credit_money) <![CDATA[ <= ]]> #{params.endCurMoneyRate}
and (a.cur_money/a.credit_money)*100 <![CDATA[ <= ]]> #{params.endCurMoneyRate}
</if>
<if test="params.sendDate != null ">

View File

@ -57,10 +57,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</if>
<if test="params.beginCurMoneyRate != null and params.beginCurMoneyRate != ''">
and (a.cur_money/a.credit_money) <![CDATA[ >= ]]> #{params.beginCurMoneyRate}
and (a.cur_money/a.credit_money)*100 <![CDATA[ >= ]]> #{params.beginCurMoneyRate}
</if>
<if test="params.endCurMoneyRate != null and params.endCurMoneyRate != ''">
and (a.cur_money/a.credit_money) <![CDATA[ <= ]]> #{params.endCurMoneyRate}
and (a.cur_money/a.credit_money)*100 <![CDATA[ <= ]]> #{params.endCurMoneyRate}
</if>
<if test="params.sendDate != null ">