修复支付等相关问题

This commit is contained in:
geng.tang@qq.com
2024-01-26 15:30:26 +08:00
parent 31edb4775a
commit 2d1f3ed93b
61 changed files with 1283 additions and 449 deletions

View File

@@ -19,7 +19,7 @@
<if test="param.userId != null">
AND a.user_id = #{param.userId}
</if>
<if test="param.scene != null">
<if test="param.scene != null and param.scene != 0">
AND a.scene = #{param.scene}
</if>
<if test="param.sceneMultiple != null">
@@ -46,12 +46,10 @@
<if test="param.status != null">
AND a.status = #{param.status}
</if>
<if test="param.deleted != null">
AND a.deleted = #{param.deleted}
</if>
<if test="param.deleted == null">
AND a.deleted = 0
</if>
<choose>
<when test="param.deleted != null">AND a.deleted = #{param.deleted}</when>
<otherwise>AND a.deleted = 0</otherwise>
</choose>
<if test="param.merchantCode != null">
AND a.merchant_code LIKE CONCAT('%', #{param.merchantCode}, '%')
</if>