-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJavaDao-xxDao.template
executable file
·86 lines (72 loc) · 1.44 KB
/
JavaDao-xxDao.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package dao;
import java.util.HashMap;
import java.util.List;
import entity.Xx;
/**
* @Created with Atom
* @author @author@
* @time @now@
* @description
* xxDao工具类
*
**/
public interface XxDao {
/**
* 插入一条数据
* @param record
* @return
*/
int insert(Xx record);
/**
* 插入一条数据 ,可以不完整
* @param record
* @return
*/
int insertSelective(Xx record);
/**
* 根据主键删除一条数据
* @param id
* @return
*/
int deleteByPrimaryKey(Integer id);
/**
* 根据主键更新一条数据
* @param record
* @return
*/
int updateByPrimaryKey(Xx record);
/**
* 根据主键更新一条数据,可以不完整 -
* @param record
* @return
*/
int updateByPrimaryKeySelective(Xx record);
/**
* 根据主键查询一条数据
* @param id
* @return
*/
Xx selectByPrimaryKey(Integer id);
/**
* 分页操作,调用findByPage limit分页方法
* @param map
* @return
*/
List<Xx> selectByPage(HashMap<String, Object> map);
/**
* 查询所有数据
* @return
*/
List<Xx> selectXxList();
/**
* 根据两字段查找记录
* @param record
* @return
*/
Xx selectByC1C2(Xx record);
/**
* 查询记录总数
* @return
*/
int selectCount();
}