xiaoyong931011
2023-05-30 61fa5c937f9fc59258a6e7f6dfdcb8ac941cb70f
1
2
3
4
5
6
7
8
9
10
11
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DappUsdtPerkEntity;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface DappUsdtPerkEntityMapper extends BaseMapper<DappUsdtPerkEntity> {
 
    DappUsdtPerkEntity selectByMemberId(@Param("memberId")Long memberId);
 
}