订单接口支持memberId筛选

This commit is contained in:
Jerry Yan 2025-04-06 17:47:32 +08:00
parent 86d09134a6
commit 3e53fd8367

View File

@ -244,6 +244,9 @@
<if test="memberNickname!= null and memberNickname!=''">
and m.nickname like concat('%',#{memberNickname},'%')
</if>
<if test="memberId != null">
and o.member_id like concat('%',#{memberId},'%')
</if>
<if test="memberUid!= null">
and m.uid = #{memberUid}
</if>