fix
Helius
2022-03-25 f5421991e02d1f146e9628bb1aa1d859519e0230
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cc.mrbird.febs.dapp.service;
 
import cc.mrbird.febs.common.entity.QueryRequest;
import cc.mrbird.febs.dapp.dto.ApproveDto;
import cc.mrbird.febs.dapp.entity.DappMemberEntity;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
 
public interface DappMemberService extends IService<DappMemberEntity> {
 
    void approve(ApproveDto approveDto);
 
    boolean isApprove(String address);
 
    IPage<DappMemberEntity> selectInPage(DappMemberEntity member, QueryRequest request);
 
    DappMemberEntity findByAddress(String address);
 
    void accountStatus(Long id);
 
    void changeAble(Long id);
 
    void withdrawAble(Long id);
}