xiaoyong931011
2020-06-12 c7d94b1950e630b0fef5ea4c2cb2a6af92c8d140
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>