Helius
2020-06-10 c463451f04087e034176f84d7effd53bf36f5cf6
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>