Browse Source

update README.md

D.Yang 6 years ago
parent
commit
3af851b871
3 changed files with 13 additions and 9 deletions
  1. 1 1
      .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
  2. 1 1
      .github/PULL_REQUEST_TEMPLATE.zh-CN
  3. 11 7
      README.md

+ 1 - 1
.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md

@@ -1,6 +1,7 @@
 ### 该Pull Request关联的Issue
 
 
+
 ### 修改描述
 
 
@@ -12,4 +13,3 @@
 ### 修复效果的截屏
 
 
-

+ 1 - 1
.github/PULL_REQUEST_TEMPLATE.zh-CN

@@ -1,6 +1,7 @@
 ### 该Pull Request关联的Issue
 
 
+
 ### 修改描述
 
 
@@ -12,4 +13,3 @@
 ### 修复效果的截屏
 
 
-

+ 11 - 7
README.md

@@ -20,12 +20,14 @@
   <a href="https://www.apache.org/licenses/LICENSE-2.0">
     <img alt="code style" src="https://img.shields.io/badge/license-Apache%202-4EB1BA.svg?style=flat-square">
   </a>
+
+  <a href="https://gitter.im/baomidou/mybatis-plus?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
+    <img alt="Join the chat at https://gitter.im/baomidou/mybatis-plus" src="https://badges.gitter.im/baomidou/mybatis-plus.svg">
+  </a>
 </p>
 
 ## What is MyBatis-Plus?
 
-[![Join the chat at https://gitter.im/baomidou/mybatis-plus](https://badges.gitter.im/baomidou/mybatis-plus.svg)](https://gitter.im/baomidou/mybatis-plus?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
-
 MyBatis-Plus is an powerful enhanced toolkit of MyBatis for simplify development. This toolkit provides some efficient, useful, out-of-the-box features for MyBatis, use it can effectively save your development time.
 
 ## Links
@@ -44,7 +46,7 @@ MyBatis-Plus is an powerful enhanced toolkit of MyBatis for simplify development
 -   Lambda-style API
 -   Almighty and highly customizable code generator
 -   Automatic paging operation
--   SQL Injection defense
+-   SQL Inject defense
 -   Support active record
 -   Support pluggable custom interface
 -   Build-in many useful extensions
@@ -73,18 +75,20 @@ MyBatis-Plus is an powerful enhanced toolkit of MyBatis for simplify development
     ```
 
 -   Use it
-    ``` java
+    ```java
     List<User> userList = userMapper.selectList(
             new QueryWrapper<User>()
                     .lambda()
                     .ge(User::getAge, 18)
     );
     ```
-    SQL executed
-    ``` sql
+    MyBatis-Plus will execute the following SQL
+    ```sql
     SELECT * FROM user WHERE age >= 18
     ```
 
+> This showcase is just a small part of MyBatis-Plus features. If you want to learn more, please refer to the [documentation](https://mybatis.plus).
+
 ## License
 
-MyBatis-Plus is under the Apache 2.0 license. See the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0) file for details.
+MyBatis-Plus is under the Apache 2.0 license. See the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0) file for details.