Helius
2020-06-03 96e88a5575a8b2293e3dca6d6d08a84a75da606d
src/main/java/com/xcong/excoin/modules/member/dao/MemberCoinAddressDao.java
@@ -1,9 +1,17 @@
package com.xcong.excoin.modules.member.dao;
import org.apache.ibatis.annotations.Param;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.member.entity.MemberCoinAddressEntity;
public interface MemberCoinAddressDao  extends BaseMapper<MemberCoinAddressEntity> {
   MemberCoinAddressEntity selectAddressByMemberIdAndSymbol(Long memberId, String symbol);
   MemberCoinAddressEntity selectBlockAddressWithTag(@Param("memberId")Long memberId, @Param("symbol")String symbol, @Param("tag")String tag);
   MemberCoinAddressEntity selectBlockAddress(@Param("memberId")Long memberId, @Param("symbol")String symbol);
}