工业级运维app手机api
fengxiang
2017-11-27 f07e90248c565330e5219d3aed095f55e10904db
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.moral.monitor.dao;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.moral.monitor.entity.MonitorPoint;
import com.moral.monitor.entity.MonitorPointExample;
import com.moral.monitor.entity.QueryHelper;
 
public interface MonitorpointDao {
    long countByExample(MonitorPointExample example);
 
    int deleteByExample(MonitorPointExample example);
 
    int deleteByPrimaryKey(String id);
 
    int insert(MonitorPoint record);
 
    int insertSelective(MonitorPoint record);
 
    List<MonitorPoint> selectByExample(MonitorPointExample example);
 
    MonitorPoint selectByPrimaryKey(String id);
 
    int updateByExampleSelective(@Param("record") MonitorPoint record, @Param("example") MonitorPointExample example);
 
    int updateByExample(@Param("record") MonitorPoint record, @Param("example") MonitorPointExample example);
 
    int updateByPrimaryKeySelective(MonitorPoint record);
 
    int updateByPrimaryKey(MonitorPoint record);
    
    public List<MonitorPoint> allMonitorPoint(QueryHelper queryHelper);
    public int monitorCount(QueryHelper queryHelper);
 
    public void deleteMonitor(String id);
 
    public void addMonitorpoint(MonitorPoint monitorPoint);
 
    public void updateMonitorpoint(MonitorPoint monitorPoint);
}