dupengyue
2017-03-10 b3635dde3e5ca9485212aa67dbb6ceb96cba873a
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.CheckingType;
import cn.com.basic.face.discern.baseApi.entity.checking.CheckingTypeQuery;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface CheckingTypeDao {
    int countByExample(CheckingTypeQuery example);
 
    int deleteByExample(CheckingTypeQuery example);
 
    int insert(CheckingType record);
 
    int insertSelective(CheckingType record);
 
    List<CheckingType> selectByExample(CheckingTypeQuery example);
 
    int updateByExampleSelective(@Param("record") CheckingType record, @Param("example") CheckingTypeQuery example);
 
    int updateByExample(@Param("record") CheckingType record, @Param("example") CheckingTypeQuery example);
}