1
zj
2025-06-23 dc9bd22833255bc602dd42c7f603ecb50842ab35
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 project.monitor;
 
import java.io.Serializable;
 
import project.monitor.model.AutoMonitorTip;
 
public interface AutoMonitorTipService {
 
    /**
     * 读完后判断阀值 提醒(业务不应该在这里实现,调用接口 如果不存在则加入提醒列表,如果存在提醒列表里则不做操作
     *
     *
     * 未完成
     */
    public void saveTipNewThreshold(AutoMonitorTip entity);
 
    /**
     * before 可以为空,不计条件,否则是这几个小时前内是否有数据
     */
    public AutoMonitorTip find(Serializable partyId, int tiptype, Integer before);
    
    
    public void update(AutoMonitorTip entity);
}