| | |
| | | |
| | | import cc.mrbird.febs.dapp.entity.DappMemberEntity; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author wzy |
| | |
| | | DappMemberEntity selectByAddress(@Param("address") String address); |
| | | |
| | | DappMemberEntity selectMemberInfoByInviteId(@Param("inviteId") String inviteId); |
| | | |
| | | IPage<DappMemberEntity> selectInPage(@Param("record") DappMemberEntity member, Page<DappMemberEntity> page); |
| | | |
| | | List<DappMemberEntity> selectAllMemberForInCome(); |
| | | } |