版本号

This commit is contained in:
yulichang 2023-02-24 16:11:12 +08:00
parent 71796252ad
commit ff1378a410
8 changed files with 8 additions and 8 deletions

View File

@ -46,7 +46,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.5.2</version>
<version>3.5.3.1</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -10,7 +10,7 @@
</parent>
<artifactId>mybatis-plus-join-adapter-v352</artifactId>
<version>1.4.2.2</version>
<name>mybatis-plus-join-adapter-before352</name>
<name>mybatis-plus-join-adapter-v352</name>
<description>An enhanced toolkit of Mybatis-Plus to simplify development.</description>
<url>https://github.com/yulichang/mybatis-plus-join</url>

View File

@ -1,4 +1,4 @@
package com.github.yulichang.adapter.before352;
package com.github.yulichang.adapter.v352;
import com.baomidou.mybatisplus.core.injector.AbstractMethod;

View File

@ -47,7 +47,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-core</artifactId>
<version>3.5.2</version>
<version>3.5.3.1</version>
<scope>provided</scope>
</dependency>
</dependencies>

View File

@ -58,7 +58,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.5.2</version>
<version>3.5.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -62,7 +62,7 @@
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-extension</artifactId>
<version>3.5.1</version>
<version>3.5.3.1</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -46,7 +46,7 @@ public class MPJSqlInjector extends DefaultSqlInjector {
public List<AbstractMethod> getMethodList(Class<?> mapperClass) {
if (VersionUtils.compare(MybatisPlusVersion.getVersion(), "3.4.3.2") >= 0) {
logger.error(() -> "DefaultSqlInjector 的 getMethodList(Class<?> mapperClass) 方法已在 3.4.3.2+ 改为" +
"getMethodList(Class<?> mapperClass, TableInfo tableInfo)");
"getMethodList(Class<?> mapperClass, TableInfo tableInfo)\n");
}
List<AbstractMethod> list = Stream.of(
new Insert(),

View File

@ -4,7 +4,7 @@ import com.baomidou.mybatisplus.core.injector.AbstractMethod;
import com.baomidou.mybatisplus.core.metadata.TableInfo;
import com.baomidou.mybatisplus.core.toolkit.StringPool;
import com.baomidou.mybatisplus.core.toolkit.sql.SqlScriptUtils;
import com.github.yulichang.adapter.before352.AbstractMethod352;
import com.github.yulichang.adapter.v352.AbstractMethod352;
import com.github.yulichang.config.ConfigProperties;
import java.util.ArrayList;