From a6e972e93dd2b79215f094f8ccf766867d4d9bea Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Mon, 22 Jul 2024 10:52:17 +0800 Subject: [PATCH] build: v1.9.4 release (^.^)YYa!! --- .../mybatis-flex-spring-test/mybatis-flex.config | 6 +++--- .../src/test/java/com/mybatisflex/test/AccountTest.java | 3 ++- .../src/test/java/com/mybatisflex/test/EnumTest.java | 6 ++---- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/mybatis-flex-test/mybatis-flex-spring-test/mybatis-flex.config b/mybatis-flex-test/mybatis-flex-spring-test/mybatis-flex.config index 721731a5..101b946c 100644 --- a/mybatis-flex-test/mybatis-flex-spring-test/mybatis-flex.config +++ b/mybatis-flex-test/mybatis-flex-spring-test/mybatis-flex.config @@ -1,3 +1,3 @@ -processor.mapper.generateEnable = false -processor.allInTables.enable = true -processor.allInTables.package = com.mybatisflex.test.tabledef \ No newline at end of file +% processor.mapper.generateEnable = false +% processor.allInTables.enable = true +% processor.allInTables.package = com.mybatisflex.test.tabledef diff --git a/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/AccountTest.java b/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/AccountTest.java index 32c78dd8..fad058de 100644 --- a/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/AccountTest.java +++ b/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/AccountTest.java @@ -30,7 +30,8 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.List; -import static com.mybatisflex.test.tabledef.Tables.ACCOUNT; +import static com.mybatisflex.test.model.table.AccountTableDef.ACCOUNT; + @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = AppConfig.class) diff --git a/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/EnumTest.java b/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/EnumTest.java index 39638a96..e61e79f4 100644 --- a/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/EnumTest.java +++ b/mybatis-flex-test/mybatis-flex-spring-test/src/test/java/com/mybatisflex/test/EnumTest.java @@ -17,12 +17,9 @@ package com.mybatisflex.test; import com.mybatisflex.core.query.QueryWrapper; -import com.mybatisflex.core.row.Db; -import com.mybatisflex.core.row.Row; import com.mybatisflex.test.mapper.AccountMapper; import com.mybatisflex.test.model.Account; import com.mybatisflex.test.model.Sex; -import com.mybatisflex.test.model.TbClass; import org.assertj.core.api.WithAssertions; import org.junit.Test; import org.junit.runner.RunWith; @@ -32,7 +29,8 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.List; -import static com.mybatisflex.test.tabledef.Tables.ACCOUNT; +import static com.mybatisflex.test.model.table.AccountTableDef.ACCOUNT; + @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = AppConfig.class)