package cc.mrbird.febs.dapp.service;
|
|
import cc.mrbird.febs.dapp.dto.SystemDto;
|
import cc.mrbird.febs.dapp.entity.DappMineDataEntity;
|
|
import java.math.BigDecimal;
|
import java.util.Map;
|
|
public interface DappSystemService {
|
|
SystemDto system();
|
|
void achieveTree(Long memberId);
|
|
/**
|
* 投入收益
|
*
|
* @param isReIn
|
*/
|
void putIntoProfit(Long memberId, int isReIn);
|
|
void tfcNewPrice(String data);
|
|
void resetMatrix();
|
|
void feeDistribute(String data);
|
//层级奖励分发消息
|
void levelProfit(Long id);
|
//计算是否有人出局
|
void memberOut(Long id);
|
//转账拨币
|
void bnbTransfer(Long id);
|
//代理升级
|
void agentUp(Long id);
|
}
|