From fa290cbb49fc30778af140f133ec9f590573e3fb Mon Sep 17 00:00:00 2001
From: zainali5120 <512061637@qq.com>
Date: Sun, 01 Nov 2020 20:46:37 +0800
Subject: [PATCH] 添加相关功能

---
 src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml b/src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml
index 39fddec..29051f3 100644
--- a/src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml
+++ b/src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml
@@ -4,9 +4,11 @@
 
     <select id="findmemberWithdrawCoinListInPage" resultType="com.xcong.excoin.modules.member.vo.MemberCoinWithdrawVo">
         SELECT
-			*
+			*,
+        (select phone from member where id = (select member_id from member_coin_address where address =s.address  and symbol =s.symbol )) insidePhone
 		FROM
-			member_coin_withdraw s left join member m on m.id = s.member_id
+			member_coin_withdraw s
+			left join member m on m.id = s.member_id
 		 <where>
 		 	s.member_id not in (26,187,454)
 			<if test="record != null" >

--
Gitblit v1.9.1