Helius
2020-06-17 b0c72c63dadd0221b5923b40affe7a0b345f7df7
src/main/resources/mapper/member/MemberCoinAddressDao.xml
@@ -36,5 +36,19 @@
          </if>
       </where>
   </select>
   <select id="selectCoinAddressListByMap" resultType="com.xcong.excoin.modules.member.entity.MemberCoinAddressEntity">
      select *  from member_coin_address
       <where>
       is_biyict = 1
        and symbolscoin_id IS NOT NULL
          <if test="memberId != null  and  memberId  != ''">
              and member_id = #{memberId}
          </if>
          <if test="symbol != null  and  symbol  != ''">
             and symbol = #{symbol}
          </if>
       </where>
   </select>
    
</mapper>