houxiao
2017-06-28 58a24b1c56d0d9db2aff1eedfb3ab79ea95718cb
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);
}