bugfix 绑定鉴权卡相关接口

This commit is contained in:
Lemon
2024-05-23 10:29:54 +08:00
parent 9819588dc8
commit e00cb184d2
2 changed files with 0 additions and 8 deletions

View File

@@ -611,14 +611,9 @@
t1.mobile_number AS phoneNumber,
t2.logic_card AS logicCard,
t2.status as status,
t3.wallet_code AS walletCode,
t3.merchant_id as merchantId,
t3.principal_balance AS principalBalance,
t3.gift_balance AS giftBalance,
t2.create_time AS createTime
FROM member_basic_info t1
JOIN pile_auth_card t2 ON t1.member_id = t2.member_id and t2.del_flag = '0'
JOIN member_wallet_info t3 ON t2.member_id = t3.member_id AND t3.merchant_id = t2.merchant_id
WHERE t1.del_flag = '0'
AND t1.member_id = #{memberId,jdbcType=VARCHAR};
</select>