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