liuxiaolong
2019-05-06 c15226e1b58f255dbebf1bdca8d4e53b9277249c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.basic.analy.dao;
 
 
import com.basic.analy.model.BbFace;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
@Mapper
@Repository
public interface BbFaceDao {
    int deleteByPrimaryKey(Integer id);
 
    int insert(BbFace record);
 
    int insertSelective(BbFace record);
 
    BbFace selectByPrimaryKey(Integer id);
 
    int updateByResourceIdSelective(BbFace record);
 
    int updateByPrimaryKeyWithBLOBs(BbFace record);
 
    int updateByPrimaryKey(BbFace record);
}