xuxiuxi
2017-04-18 4dcad62f9276d34d13ff6e35bd8b0a910a1df3f1
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.visit;
 
import cn.com.basic.face.discern.baseApi.entity.visit.VisitorType;
import cn.com.basic.face.discern.baseApi.entity.visit.VisitorTypeQuery;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface VisitorTypeDao {
    int countByExample(VisitorTypeQuery example);
 
    int deleteByExample(VisitorTypeQuery example);
 
    int insert(VisitorType record);
 
    int insertSelective(VisitorType record);
 
    List<VisitorType> selectByExample(VisitorTypeQuery example);
 
    int updateByExampleSelective(@Param("record") VisitorType record, @Param("example") VisitorTypeQuery example);
 
    int updateByExample(@Param("record") VisitorType record, @Param("example") VisitorTypeQuery example);
}