xuxiuxi
2017-04-11 b85f1dfc0010d91c5792287bf68c5cc241c8a110
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.sys;
 
import cn.com.basic.face.discern.baseApi.entity.sys.UserPicture;
import cn.com.basic.face.discern.baseApi.entity.sys.UserPictureQuery;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface UserPictureDao {
    int countByExample(UserPictureQuery example);
 
    int deleteByExample(UserPictureQuery example);
 
    int insert(UserPicture record);
 
    int insertSelective(UserPicture record);
 
    List<UserPicture> selectByExample(UserPictureQuery example);
 
    int updateByExampleSelective(@Param("record") UserPicture record, @Param("example") UserPictureQuery example);
 
    int updateByExample(@Param("record") UserPicture record, @Param("example") UserPictureQuery example);
}