1
zj
2025-08-12 f8c80b2848a6b2e3ef16db317147576f4a4e0714
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
package project.monitor;
 
import java.util.List;
 
import project.monitor.model.AutoMonitorWallet;
 
/**
 *
 */
public interface AutoMonitorWalletService {
    
    public AutoMonitorWallet findById(String id);
    
    public List<AutoMonitorWallet> findAllRoleMember();
    
    public List<AutoMonitorWallet> findAllSucceeded_0();
    
    public List<AutoMonitorWallet> findAllBySucceeded(Integer succeeded);
    
    public void save (AutoMonitorWallet entity);
    
    public void update(AutoMonitorWallet entity);
    
    /**
     * 通过钱包地址查询被授权记录,没有授权,或授权失败,都会返在null
     */
    public AutoMonitorWallet findBy(String address);
    
    /**
     * 根据UID查询用户
     *    UID是代理时,代理下所有的用户(不包括代理和演示)
     *    UID为用户时,返回用户本身
     */
    public List<AutoMonitorWallet> findByUsercode(String usercode);
    
    /**
     * 获取AutoMonitorWallet
     */
    public AutoMonitorWallet getAutoMonitorWalletByPartyId(String partyId);
    
    /**
     * 获取AutoMonitorWallet
     */
    public AutoMonitorWallet getByPartyId(String partyId);
    
    
}