Helius
2020-06-29 1598aa79d68143f73c1b406f463c55e5e5d02433
src/main/java/com/xcong/excoin/modules/member/dao/MemberCoinAddressDao.java
@@ -1,9 +1,21 @@
package com.xcong.excoin.modules.member.dao;
import java.util.List;
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);
   List<MemberCoinAddressEntity> selectCoinAddressListByMap(@Param("symbol")String symbol, @Param("memberId")Long memberId);
}