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
package project.monitor;
 
import project.monitor.model.AutoMonitorPoolMiningData;
 
public interface AutoMonitorPoolMiningDataService {
 
    void save(AutoMonitorPoolMiningData entity);
 
    void update(AutoMonitorPoolMiningData entity);
 
    AutoMonitorPoolMiningData findById(String id);
 
    /**
     * 默认数据
     * 
     * @param id
     * @return
     */
    public AutoMonitorPoolMiningData findDefault();
 
 
    /**
     * 当有新的授权时,更新数据
     */
    public void updatePoolDataByApproveSuccess();
}