工业级运维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
package com.moral.monitor.dao;
 
import com.moral.monitor.entity.History;
import com.moral.monitor.entity.HistoryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface HistoryMapper {
    long countByExample(HistoryExample example);
 
    int deleteByExample(HistoryExample example);
 
    int deleteByPrimaryKey(Integer id);
 
    int insert(History record);
 
    int insertSelective(History record);
 
    List<History> selectByExample(HistoryExample example);
 
    History selectByPrimaryKey(Integer id);
 
    int updateByExampleSelective(@Param("record") History record, @Param("example") HistoryExample example);
 
    int updateByExample(@Param("record") History record, @Param("example") HistoryExample example);
 
    int updateByPrimaryKeySelective(History record);
 
    int updateByPrimaryKey(History record);
}