xiaoyong931011
2022-12-01 2a1453be9a2ea0e6ecaef7009bea19cc612bc343
src/main/java/cc/mrbird/febs/dapp/mapper/DappMemberDao.java
@@ -30,4 +30,24 @@
    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();
    void updateMemberAccountType(@Param("accountType")String code, @Param("id")Long id);
    void updateMemberActiveStatus(@Param("accountStatus")int i, @Param("id")Long id);
    List<DappMemberEntity> selectMemberInfoByRefererId(@Param("refererId")String inviteId);
    Integer selectCountByAccountTypeAndRefererId(@Param("accountType")String code, @Param("refererId")String inviteId);
}