typo: 修正拼写错误。

This commit is contained in:
王帅 2024-10-03 19:11:24 +08:00
parent 389df409b7
commit 913fea7c28
8 changed files with 13 additions and 13 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.TableRef; import com.mybatisflex.annotation.TableRef;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.TableRef; import com.mybatisflex.annotation.TableRef;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType; import com.mybatisflex.annotation.KeyType;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;
import com.mybatisflex.annotation.KeyType; import com.mybatisflex.annotation.KeyType;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.ColumnAlias; import com.mybatisflex.annotation.ColumnAlias;
import com.mybatisflex.annotation.Id; import com.mybatisflex.annotation.Id;

View File

@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package com.mybatisflex.test.alisa; package com.mybatisflex.test.alias;
import com.mybatisflex.annotation.ColumnAlias; import com.mybatisflex.annotation.ColumnAlias;
import com.mybatisflex.annotation.TableRef; import com.mybatisflex.annotation.TableRef;

View File

@ -21,8 +21,8 @@ import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter; import com.fasterxml.jackson.databind.ObjectWriter;
import com.mybatisflex.core.FlexGlobalConfig; import com.mybatisflex.core.FlexGlobalConfig;
import com.mybatisflex.core.query.QueryWrapper; import com.mybatisflex.core.query.QueryWrapper;
import com.mybatisflex.test.alisa.SysUser; import com.mybatisflex.test.alias.SysUser;
import com.mybatisflex.test.alisa.UserVO; import com.mybatisflex.test.alias.UserVO;
import org.apache.ibatis.mapping.ResultMap; import org.apache.ibatis.mapping.ResultMap;
import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
@ -34,9 +34,9 @@ import java.util.List;
import static com.mybatisflex.core.query.QueryMethods.column; import static com.mybatisflex.core.query.QueryMethods.column;
import static com.mybatisflex.core.query.QueryMethods.select; import static com.mybatisflex.core.query.QueryMethods.select;
import static com.mybatisflex.test.alisa.table.SysDeptTableDef.SYS_DEPT; import static com.mybatisflex.test.alias.table.SysDeptTableDef.SYS_DEPT;
import static com.mybatisflex.test.alisa.table.SysRoleTableDef.SYS_ROLE; import static com.mybatisflex.test.alias.table.SysRoleTableDef.SYS_ROLE;
import static com.mybatisflex.test.alisa.table.SysUserTableDef.SYS_USER; import static com.mybatisflex.test.alias.table.SysUserTableDef.SYS_USER;
/** /**
* 别名测试 * 别名测试
@ -45,7 +45,7 @@ import static com.mybatisflex.test.alisa.table.SysUserTableDef.SYS_USER;
* @since 2023-11-16 * @since 2023-11-16
*/ */
@SpringBootTest @SpringBootTest
class AlisaTest { class AliasTest {
@Autowired @Autowired
SysUserMapper userMapper; SysUserMapper userMapper;