工业级运维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
package com.moral.monitor.dao;
 
import java.io.Serializable;
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
import org.springframework.dao.DataAccessException;
 
public interface BaseDao <Entity, Example,PK extends Serializable> extends Serializable{
    int insert(Entity record) throws DataAccessException;
    int insertSelective(Entity record) throws DataAccessException;
 
    int deleteByPrimaryKey(PK PK) throws DataAccessException;
    int deleteByExample(Example example) throws DataAccessException;
 
    int updateByPrimaryKeySelective(Entity record) throws DataAccessException;
    int updateByPrimaryKey(Entity record) throws DataAccessException;
    int updateByExampleSelective(@Param("record") Entity record, @Param("example") Example example) throws DataAccessException;
    int updateByExample(@Param("record") Entity record, @Param("example") Example example) throws DataAccessException;
 
    int countByExample(Example example) throws DataAccessException;
    Entity selectByPrimaryKey(PK pk) throws DataAccessException;
    List<Entity> selectByExample(Example example) throws DataAccessException;
}