KKSU
2024-06-06 424ad35dcd1fafb51a0ba77523b11e6871f2858c
src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -1,11 +1,14 @@
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.List;
/**
@@ -25,4 +28,20 @@
    List<DappMemberEntity> selectAgentMemberList(@Param("list") List<String> inviteIds, @Param("size") Integer size);
    List<DappMemberEntity> selectParentsList(@Param("list") List<String> inviteIds, @Param("size") Integer size);
    BigDecimal selectAllBalance(@Param("accountType") String accountType);
    List<DappMemberEntity> selectMemberByAccountType(@Param("accountType") String accountType);
    List<DappMemberEntity> selectChildMemberDirectOrNot(@Param("inviteId") String inviteId, @Param("type") Integer type, @Param("status") Integer status);
    BigDecimal selectChildHoldAmount(@Param("inviteId") String inviteId);
    List<DappMemberEntity> selectMakerAddress();
    int updateMemberActive();
    DappMemberEntity selectNewestDirectMember(@Param("inviteId") String inviteId);
    List<DappMemberEntity> selectMemberListNeedProfit();
}