update 余额变动记录 隐藏等于0的记录

This commit is contained in:
2023-12-08 15:27:18 +08:00
parent 62aadeab54
commit 5e4c8c7f84
2 changed files with 1 additions and 4 deletions

View File

@@ -203,10 +203,6 @@ public class MemberBasicInfoController extends BaseController {
return ajaxResult;
}
/**
* 查询会员钱包列表
*/
/**
* 查询会员钱包流水
* http://localhost:8080/member/info/queryMemberBalanceChanges

View File

@@ -470,6 +470,7 @@
t1.after_amount as afterAmount
from member_wallet_log t1
where t1.member_id = #{memberId,jdbcType=VARCHAR}
and t1.amount != 0
<if test="type != null and type != ''">
and t1.type = #{type,jdbcType=VARCHAR}
</if>