KKSU
2024-07-08 ba10bcff40323c99c4f21c121190df09ce58ace9
src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -7,6 +7,7 @@
import org.apache.ibatis.annotations.Param;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
/**
@@ -30,4 +31,19 @@
    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();
    int updateMemberActiveV2(@Param("memberId") Long memberId);
    DappMemberEntity selectNewestDirectMember(@Param("inviteId") String inviteId);
    List<DappMemberEntity> selectMemberListNeedProfit();
    List<DappMemberEntity> selectListByDate(@Param("date") Date date);
}