fix
Helius
2022-06-06 6576dfa555e28d78968e1b37829b458238f778b8
src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -2,15 +2,27 @@
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
 * @author
 * @date 2022-03-17
 **/
public interface DappMemberDao extends BaseMapper<DappMemberEntity> {
    DappMemberEntity selectByAddress(@Param("address") String address);
    DappMemberEntity selectByAddress(@Param("address") String address, @Param("chain") String chain);
    DappMemberEntity selectMemberInfoByInviteId(@Param("inviteId") String inviteId);
    IPage<DappMemberEntity> selectInPage(@Param("record") DappMemberEntity member, Page<DappMemberEntity> page);
    List<DappMemberEntity> selectAllMemberForInCome();
    List<DappMemberEntity> selectAgentMemberList(@Param("list") List<String> inviteIds, @Param("size") Integer size);
    List<DappMemberEntity> selectParentsList(@Param("list") List<String> inviteIds, @Param("size") Integer size);
}