KKSU
2024-07-06 855b8a7835bfffd7e81ef5fb2d9e6bad133136c9
src/main/java/cc/mrbird/febs/dapp/service/DappWalletService.java
@@ -1,11 +1,15 @@
package cc.mrbird.febs.dapp.service;
import cc.mrbird.febs.common.entity.FebsResponse;
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.dapp.dto.*;
import cc.mrbird.febs.dapp.entity.DappAccountMoneyChangeEntity;
import cc.mrbird.febs.dapp.entity.DappFundFlowEntity;
import cc.mrbird.febs.dapp.entity.DappWalletCoinEntity;
import cc.mrbird.febs.dapp.entity.DappWalletMineEntity;
import cc.mrbird.febs.dapp.vo.ApiIndexInfoVo;
import cc.mrbird.febs.dapp.vo.ApiStorageInfoVo;
import cc.mrbird.febs.dapp.vo.MemberNodeVo;
import cc.mrbird.febs.dapp.vo.WalletInfoVo;
import com.baomidou.mybatisplus.core.metadata.IPage;
@@ -43,4 +47,22 @@
    DappWalletCoinEntity findByMemberId(Long memberId);
    Long buyNode(BuyNodeDto buyNodeDto);
    Long buyStar(BuyStarDto buyStarDto);
    FebsResponse nodeList();
    MemberNodeVo memberNode(MemberNodeDto memberNodeDto);
    Long chargeFee(ChargeFeeDto chargeFeeDto);
    FebsResponse agreeWithdraw(Long id);
    FebsResponse disagreeWithdraw(Long id);
    ApiIndexInfoVo indexInfo();
    List<ApiStorageInfoVo> storageIndex();
    List<ApiStorageInfoVo> directIndex();
}