Helius
2020-12-28 7ba7366a8c6ce8019339e433b218386645cb5312
src/main/resources/mapper/modules/MemberCoinWithdrawMapper.xml
@@ -4,11 +4,12 @@
    <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" >
                <if test="record.account!=null and record.account!=''">
                     and (m.phone = #{record.account} or m.email = #{record.account} or m.invite_id=#{record.account})