| | |
| | | package cc.mrbird.febs.dapp.mapper; |
| | | |
| | | import cc.mrbird.febs.dapp.dto.TeamListDto; |
| | | import cc.mrbird.febs.dapp.entity.DappMemberEntity; |
| | | import cc.mrbird.febs.dapp.vo.TeamListVo; |
| | | 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.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | List<DappMemberEntity> selectMakerAddress(); |
| | | |
| | | int updateMemberActive(); |
| | | int updateMemberActiveV2(@Param("memberId") Long memberId); |
| | | |
| | | DappMemberEntity selectNewestDirectMember(@Param("inviteId") String inviteId); |
| | | |
| | | List<DappMemberEntity> selectMemberListNeedProfit(); |
| | | |
| | | List<DappMemberEntity> selectListByDate(@Param("date") Date date); |
| | | } |