File tree Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Expand file tree Collapse file tree 3 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ Country代码:
86
86
87
87
##Maven坐标以及下载地址
88
88
89
- ###当前开发版本2 .1.0-SNAPSHOT
89
+ ###最新版本2 .1.0
90
90
91
91
通用Mapper接口增加Example查询方法,包括以下方法:
92
92
@@ -100,15 +100,13 @@ Country代码:
100
100
101
101
int updateByExample(@Param("record") T record, @Param("example") Object example);
102
102
103
- ###最新版本2.0.1
104
-
105
103
如果你使用Maven,只需要添加如下依赖:
106
104
107
105
``` xml
108
106
<dependency >
109
107
<groupId >com.github.abel533</groupId >
110
108
<artifactId >mapper</artifactId >
111
- <version >2.0.1 </version >
109
+ <version >2.1.0 </version >
112
110
</dependency >
113
111
```
114
112
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.github.abel533</groupId >
6
6
<artifactId >mapper</artifactId >
7
- <version >2.1.0-SNAPSHOT </version >
7
+ <version >2.1.0</version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >mapper</name >
Original file line number Diff line number Diff line change 1
1
#更新日志
2
2
3
- ##最新版V2.0.1 - 2015-02-28
3
+ ##v2.1.0 - 2015-03-07
4
4
5
- × 增加拦截器,完善相应的文档
5
+ * 通用Mapper接口增加Example查询方法,包括以下方法:
6
6
7
- ##最新版V2.0.0 - 2015-02-04
7
+ int selectCountByExample(Object example);
8
+
9
+ int deleteByExample(Object example);
10
+
11
+ List<T > selectByExample(Object example);
12
+
13
+ int updateByExampleSelective(@Param ("record") T record, @Param ("example") Object example);
14
+
15
+ int updateByExample(@Param ("record") T record, @Param ("example") Object example);
16
+
17
+ ##V2.0.1 - 2015-02-28
18
+
19
+ * 增加拦截器,完善相应的文档
20
+
21
+ ##V2.0.0 - 2015-02-04
8
22
9
23
* 增加一个` CommonMapper ` 和包装类` EntityMapper ` ,建议使用` EntityMapper `
10
24
* 有关` EntityMapper ` 的内容请看独立文档,这个类足以独立成一个开源项目
You can’t perform that action at this time.
0 commit comments