升级mybatis-plus版本

This commit is contained in:
yulichang 2025-03-26 01:44:28 +08:00
parent 20b21c6d9d
commit cd82858357
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ import org.springframework.test.context.junit.jupiter.EnabledIf;
* 连表删除没有同意语法语法不同数据库差别较大
* MPJ 连表更新 目前只支持 mysql
*/
@SpringBootTest("spring.profiles.active=mysql")
@SpringBootTest
@EnabledIf(value = EnabledIfConfig.runWithMysql, loadContext = true)
public class DeleteJoinTest {

View File

@ -18,7 +18,7 @@ import org.springframework.test.context.junit.jupiter.EnabledIf;
* 由于不同数据库函数支持情况不同
* 此类用于测试 mysql 专属语法或函数
*/
@SpringBootTest("spring.profiles.active=mysql")
@SpringBootTest
@EnabledIf(value = EnabledIfConfig.runWithMysql, loadContext = true)
public class MysqlTest {

View File

@ -26,7 +26,7 @@ import java.util.Objects;
* 连表更新没有同意语法语法不同数据库差别较大
* MPJ 连表更新 目前只支持 mysql
*/
@SpringBootTest("spring.profiles.active=mysql")
@SpringBootTest
@EnabledIf(value = EnabledIfConfig.runWithMysql,loadContext = true)
public class UpdateJoinTest {