用户列表增加余额筛选

This commit is contained in:
张松
2025-03-25 15:45:45 +08:00
parent 4a48e272c5
commit ae6b5fcbd1
5 changed files with 13 additions and 6 deletions

View File

@@ -73,6 +73,10 @@
<if test="key != null and key != ''">
and (a.nick_name like concat('%', #{key}, '%') or a.phone like concat('%', #{key}, '%'))
</if>
<if test="amount != null">
and a.amount >= #{amount}
</if>
GROUP BY a.id
order by a.create_time desc
</select>