xiaoyong931011
2021-05-25 3341b7a0e2a8c719cf6eaf1591a721ec6b8e1fe4
1
2
3
4
5
6
7
8
9
10
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);
}