From 43a51277c91dba52922379bdf8bf81622303ceaa Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 29 Nov 2021 10:36:14 +0800 Subject: [PATCH] 20211126 fish --- src/main/resources/mapper/modules/CannonExchangeRatioMapper.xml | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/modules/CannonExchangeRatioMapper.xml b/src/main/resources/mapper/modules/CannonExchangeRatioMapper.xml index f9bad3d..c0152f9 100644 --- a/src/main/resources/mapper/modules/CannonExchangeRatioMapper.xml +++ b/src/main/resources/mapper/modules/CannonExchangeRatioMapper.xml @@ -19,5 +19,22 @@ ORDER BY a.create_time desc </select> + + + <select id="findMemberVoInPage" resultType="com.xcong.excoin.modules.fish.vo.MemberVo"> + SELECT + d.email, + a.available_balance goldNumber, + b.available_balance usdtNumber, + c.available_balance coinNumber + FROM + member_account_gold a + LEFT JOIN member_wallet_coin b ON a.member_id = b.member_id + LEFT JOIN member_wallet_coin c ON a.member_id = c.member_id + LEFT JOIN member d ON a.member_id = d.id + WHERE + b.wallet_code = 'USDT' + AND c.wallet_code = 'XCT' + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1