whycxzp
2021-06-03 0ed39bd9a35a51a118f54b6c3fea792294431a2f
1
2
3
4
5
6
7
8
9
10
11
12
package com.whyc.mapper;
 
import com.whyc.pojo.AlarmRule;
 
import java.util.List;
 
public interface AlarmRuleMapper extends CustomMapper<AlarmRule> {
 
    List<AlarmRule> getListWithSameThreshold(AlarmRule alarmRule);
 
    List<Integer> getLevelListWithSameAlarm(Integer deviceFlag, String field, Integer thresholdFlag);
}