KKSU
2024-06-13 6a0baf02bb1cc4b7d1d0e9d796ead2218ed9c824
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cc.mrbird.febs.dapp.service;
 
import cc.mrbird.febs.dapp.dto.SystemDto;
 
public interface DappSystemService {
 
    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);
}