xuxiuxi
2017-03-31 03f65ab5ad75eae6a438a65bcd66ce25a7551d1a
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);
}