houxiao
2017-05-12 22fe3eb94f8e65ebad5d55b12c371a0b69bfc04a
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);
}