工业级运维app手机api
fengxiang
2017-10-25 dbc28ad9f10a7e4ae3d1c837f721b168343e961e
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
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;
 
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);
}