package com.xcong.excoin.modules.otc.dao;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.xcong.excoin.modules.otc.entity.OtcBlackList;
|
import org.apache.ibatis.annotations.Param;
|
|
public interface OtcBlackListDao extends BaseMapper<OtcBlackList> {
|
|
OtcBlackList selectByMemberIdAndBlackMemberId(@Param("memberId") Long memberId, @Param("blackMemberId") Long blackMemberId);
|
}
|