xiaoyong931011
2021-03-26 3d0aa53f29bf42e9f2a28cdbbd109f0e9bb86e7c
src/main/java/com/xcong/excoin/modules/platform/dao/PlatformSymbolsCoinDao.java
@@ -5,9 +5,11 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.member.parameter.vo.MemberCoinAddressCountVo;
import com.xcong.excoin.modules.platform.entity.PlatformSymbolsCoinEntity;
import org.apache.ibatis.annotations.Param;
public interface PlatformSymbolsCoinDao extends BaseMapper<PlatformSymbolsCoinEntity> {
   
   List<MemberCoinAddressCountVo> selectCoinAddressCount(Long memberId);
    PlatformSymbolsCoinEntity selectOneBySymbol(@Param("symbol")String symbol);
}