This commit is contained in:
linfso 2024-06-15 22:36:56 +08:00
parent 28114f50ab
commit 2ac446d6eb

View File

@ -64,6 +64,18 @@
<if test="updateTime != null "> and update_time = #{updateTime}</if>
<if test="createSite != null and createSite != ''"> and create_site like concat('%', #{createSite}, '%')</if>
<if test="updateSite != null and updateSite != ''"> and update_site like concat('%', #{updateSite}, '%')</if>
<if test="params.balanceStatus != null and params.balanceStatus == '1'">
and cur_money <![CDATA[ > ]]> watch_money
</if>
<if test="params.balanceStatus != null and params.balanceStatus == '2'">
and cur_money <![CDATA[ < ]]> watch_money
</if>
</where>
order by create_time desc
</select>