Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c939d1 commit 18e7a61Copy full SHA for 18e7a61
wiki/Mapper.md
@@ -0,0 +1,52 @@
1
+#提供的可选的接口
2
+
3
+##基础接口
4
5
+###select
6
7
+接口:`SelectMapper`
8
+方法:`List<T> select(T record);`
9
+说明:根据实体中的属性值进行查询,查询条件使用等号
10
11
+接口:`SelectByPrimaryKeyMapper`
12
+方法:`T selectByPrimaryKey(Object key);`
13
+说明:根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号
14
15
+接口:`SelectOneMapper`
16
+方法:`T selectOne(T record);`
17
+说明:根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号
18
19
+接口:`SelectCountMapper`
20
+方法:`int selectCount(T record);`
21
+说明:根据实体中的属性查询总数,查询条件使用等号
22
23
+###insert
24
25
+接口:``
26
+方法:``
27
+说明:
28
29
30
31
32
33
+###update
34
35
36
37
38
39
40
41
42
43
+###delete
44
45
46
47
48
49
50
51
52
0 commit comments