xiaoyong931011
2022-10-21 e7ca8ba2b3c3b446e39d4c3a3ea5e238adb2fc7c
src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -1,7 +1,10 @@
package cc.mrbird.febs.dapp.mapper;
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.dapp.dto.ApiMyTeammateInfoDto;
import cc.mrbird.febs.dapp.dto.TeamListDto;
import cc.mrbird.febs.dapp.entity.DappMemberEntity;
import cc.mrbird.febs.dapp.vo.ApiMyTeammateInfoListVo;
import cc.mrbird.febs.dapp.vo.TeamListVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -40,4 +43,18 @@
    IPage<TeamListVo> selectTeamListInPage(@Param("record") TeamListDto teamListDto, Page<TeamListDto> page);
    List<DappMemberEntity> selectMakerAddress();
    DappMemberEntity selectMemberInfoByUsername(@Param("username")String account);
    DappMemberEntity selectMemberInfoByUsernameAndPassword(@Param("username") String account,@Param("password")  String md5Pwd);
    DappMemberEntity selectMemberInfoByTouristMark(@Param("touristMark")String touristMark);
    DappMemberEntity selectRelationShipByInviteIdOutAndMemberId(@Param("id")Long id, @Param("inviteId")String inviteId);
    IPage<DappMemberEntity> selectMemberListInPage(@Param("record")DappMemberEntity member, Page<DappMemberEntity> page);
    void updateIsOnHook();
    IPage<ApiMyTeammateInfoListVo> selectMyTeammateInfoInPage(@Param("record")ApiMyTeammateInfoDto apiMyTeammateInfoDto, Page<ApiMyTeammateInfoListVo> page);
}