Skip to content

Commit 3532353

Browse files
committed
更新版本为2.1.0
1 parent 8aaa176 commit 3532353

File tree

3 files changed

+20
-8
lines changed

3 files changed

+20
-8
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Country代码:
8686

8787
##Maven坐标以及下载地址
8888

89-
###当前开发版本2.1.0-SNAPSHOT
89+
###最新版本2.1.0
9090

9191
通用Mapper接口增加Example查询方法,包括以下方法:
9292

@@ -100,15 +100,13 @@ Country代码:
100100

101101
int updateByExample(@Param("record") T record, @Param("example") Object example);
102102

103-
###最新版本2.0.1
104-
105103
如果你使用Maven,只需要添加如下依赖:
106104

107105
```xml
108106
<dependency>
109107
<groupId>com.github.abel533</groupId>
110108
<artifactId>mapper</artifactId>
111-
<version>2.0.1</version>
109+
<version>2.1.0</version>
112110
</dependency>
113111
```
114112

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.github.abel533</groupId>
66
<artifactId>mapper</artifactId>
7-
<version>2.1.0-SNAPSHOT</version>
7+
<version>2.1.0</version>
88
<packaging>jar</packaging>
99

1010
<name>mapper</name>

wiki/Changelog.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
#更新日志
22

3-
##最新版V2.0.1 - 2015-02-28
3+
##v2.1.0 - 2015-03-07
44

5-
× 增加拦截器,完善相应的文档
5+
* 通用Mapper接口增加Example查询方法,包括以下方法:
66

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
822

923
* 增加一个`CommonMapper`和包装类`EntityMapper`,建议使用`EntityMapper`
1024
* 有关`EntityMapper`的内容请看独立文档,这个类足以独立成一个开源项目

0 commit comments

Comments
 (0)