| | |
| | | package cc.mrbird.febs.dapp.service; |
| | | |
| | | import cc.mrbird.febs.dapp.entity.DappMineDataEntity; |
| | | |
| | | import java.util.Map; |
| | | import cc.mrbird.febs.dapp.dto.SystemDto; |
| | | |
| | | public interface DappSystemService { |
| | | |
| | | Map<String, Object> findTotalInComeAndList(); |
| | | SystemDto system(); |
| | | |
| | | void achieveTree(Long memberId); |
| | | |
| | | void achieveTreeV2(Long memberId); |
| | | |
| | | /** |
| | | * 投入收益 |
| | | * |
| | | * @param isReIn |
| | | */ |
| | | void putIntoProfit(Long meerId, int isReIn); |
| | | |
| | | void tfcNewPrice(String data); |
| | | |
| | | void resetMatrix(); |
| | | |
| | | void feeDistribute(String data); |
| | | |
| | | void invitePerkMsg(Long id); |
| | | |
| | | void nodePerkMsg(Long id); |
| | | } |