Helius
2021-06-01 f95df31ceef45cf6486a1bf5be90e5e4075fdb1a
src/main/resources/mapper/platform/PlatformSymbolsCoinDao.xml
@@ -11,9 +11,18 @@
         platform_symbols_coin a
      LEFT JOIN member_coin_address b ON a.id = b.symbolscoin_id
      AND member_id = #{memberId}
      where a.name in ('USDT', 'XCH')
      GROUP BY
         a.id,
         a. NAME
   </select>
   <select id="selectOneBySymbol" resultType="com.xcong.excoin.modules.platform.entity.PlatformSymbolsCoinEntity">
      SELECT
         *
      FROM
         platform_symbols_coin a
         where a.name = #{symbol}
   </select>
   
</mapper>