xuxiuxi
2017-07-28 062e9ff8359a4eccba741d0c8c799f3ca3535d83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.com.basic.face.discern.baseApi.mapper.checking;
 
import cn.com.basic.face.discern.baseApi.entity.checking.Checking;
import cn.com.basic.face.discern.baseApi.entity.checking.CheckingQuery;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface CheckingDao {
    int countByExample(CheckingQuery example);
 
    int deleteByExample(CheckingQuery example);
 
    int insert(Checking record);
 
    int insertSelective(Checking record);
 
    List<Checking> selectByExample(CheckingQuery example);
 
    int updateByExampleSelective(@Param("record") Checking record, @Param("example") CheckingQuery example);
 
    int updateByExample(@Param("record") Checking record, @Param("example") CheckingQuery example);
}