whycxzp
2021-05-14 b4adf749da7bb19c3907eab9e9b83f2ec173c9f3
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.pojo.AlarmRule;
 
import java.util.List;
 
public interface AlarmRuleMapper extends CustomMapper<AlarmRule> {
 
    List<AlarmRule> getListWithSameThreshold(AlarmRule alarmRule);
}