package cc.mrbird.febs.dapp.service;
|
|
import cc.mrbird.febs.dapp.dto.SystemDto;
|
import cc.mrbird.febs.dapp.entity.DbMemberNode;
|
|
import java.math.BigDecimal;
|
|
public interface DappSystemService {
|
|
SystemDto system();
|
|
void achieveTree(Long memberId);
|
|
void achieveTreeV2(Long memberId);
|
|
void memberNodeNext(DbMemberNode dbMemberNodeRoot);
|
|
/**
|
* 投入收益
|
*
|
* @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);
|
|
void directPerkMsg(Long id);
|
|
void updateBalanceInsertFlow(BigDecimal daoNodeAmount, Long memberId, Integer type, String description);
|
|
void teamPerk(Long id);
|
|
void MemberLevel(Long id);
|
}
|