xiaoyong931011
2023-08-07 2eebadc490b460a3e97666ce33d46397e3fdfdd2
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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.DappMemberEntity;
import cc.mrbird.febs.dapp.entity.DappSystemProfit;
import cc.mrbird.febs.dapp.entity.DappTransferRecordEntity;
import cc.mrbird.febs.dapp.vo.*;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
import java.util.Map;
 
public interface DappMemberService extends IService<DappMemberEntity> {
 
    void approve(ApproveDto approveDto);
 
    void connect(ConnectDto connectDto);
 
    int isApprove(String address, String chain);
 
    IPage<DappMemberEntity> selectInPage(DappMemberEntity member, QueryRequest request);
 
    DappMemberEntity findByAddress(String address, String chain);
 
    void accountStatus(Long id);
 
    void changeAble(Long id);
 
    void withdrawAble(Long id);
 
    void transfer(String address, String chain);
 
    IPage<DappTransferRecordEntity> selectTransferInPage(DappTransferRecordEntity transfer, QueryRequest request);
 
    void setNewestPrice(PriceSettingDto priceSettingDto);
 
    DappMemberEntity insertMember(String address, String refererId);
 
    DappMemberEntity insertMember(String address, String refererId, String chainType, String accountType);
 
    TeamListVo findTeamList();
 
    void setSystemFee(AdminSystemFeeVo adminSystemFeeVo);
 
    ApiRunListInfoVo findRunListInfo();
 
    IPage<AdminDappSystemProfitVo> selectSystemProfitInPage(DappSystemProfit dappSystemProfit, QueryRequest request);
 
    IPage<AdminSystemProfitFlowListVo> getSystemProfitFlowList(DappSystemProfit dappSystemProfit, QueryRequest request);
 
    IPage<AdminTeamInfoVo> getTeamInfo(DappMemberEntity dappMemberEntity, QueryRequest request);
 
    /**
     * 获取节点信息
     * @return
     */
    FebsResponse getNodeInfo();
 
    FebsResponse getMemberNode();
 
    FebsResponse getMemberInfo();
 
    IPage<DappMemberNodeVo> getMemberNodeInfo(DappMemberEntity dappMemberEntity, QueryRequest request);
 
    String aKLine(AKLineDto aKLineDto);
 
    MyInviteInfoVo findInviteInfo();
 
    FebsResponse getFundFlowInfo();
 
    FebsResponse insideWithYes(Long id);
 
    FebsResponse insideWithNo(Long id);
 
    List<AdminAgentLevelOptionTreeVo> getAgentLevelOption();
 
    FebsResponse agentLevelSetUpdate(AgentLevelSetUpdateDto agentLevelSetUpdateDto);
 
}