xufenglei
2018-02-06 5b0347a811a6c948defb5320e71c43173280dfc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.moral.mapper;
 
import java.util.List;
import java.util.Map;
 
import com.moral.entity.alarm.AlarmConfig;
 
public interface AlarmConfigMapper {
    int deleteByPrimaryKey(Integer id);
 
    int insert(AlarmConfig record);
 
    int insertSelective(AlarmConfig record);
 
    AlarmConfig selectByPrimaryKey(Integer id);
    //根据组织id获取三级警报阀值
    AlarmConfig selectByOrganizationId(Integer organizationId);
    
    int updateByPrimaryKeySelective(AlarmConfig record);
 
    int updateByPrimaryKey(AlarmConfig record);
}