update 会员钱包

This commit is contained in:
2023-11-21 16:02:55 +08:00
parent 820fb203e1
commit 243981d81b
9 changed files with 30 additions and 5 deletions

View File

@@ -193,4 +193,12 @@
and member_id = #{memberId,jdbcType=INTEGER}
and merchant_id is not null
</select>
<select id="selectByWalletCode" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from member_wallet_info
where del_flag = '0'
and wallet_code = #{walletCode,jdbcType=VARCHAR}
</select>
</mapper>