package cc.mrbird.febs.dapp.mapper;
|
|
import cc.mrbird.febs.dapp.entity.DappMemberEntity;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* @author wzy
|
* @date 2022-03-17
|
**/
|
public interface DappMemberDao extends BaseMapper<DappMemberEntity> {
|
|
DappMemberEntity selectByAddress(@Param("address") String address);
|
|
DappMemberEntity selectMemberInfoByInviteId(@Param("inviteId") String inviteId);
|
}
|