pans
2017-08-09 f2327d66d762a2279bf7b725a818a17a213e9e0b
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);
}