mirror of
https://gitee.com/best_handsome/mybatis-plus-join
synced 2025-07-11 00:02:22 +08:00
版本号
This commit is contained in:
parent
71796252ad
commit
ff1378a410
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.github.yulichang.adapter.before352;
|
||||
package com.github.yulichang.adapter.v352;
|
||||
|
||||
import com.baomidou.mybatisplus.core.injector.AbstractMethod;
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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(),
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user