From 2e066745825f36a82ca2e256206b7395d2706215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=80=E6=BA=90=E6=B5=B7=E5=93=A5?= Date: Wed, 31 May 2023 16:54:46 +0800 Subject: [PATCH] update comment and docs --- docs/zh/core/table.md | 2 +- docs/zh/others/codegen.md | 2 +- .../src/main/java/com/mybatisflex/annotation/Table.java | 2 +- .../main/java/com/mybatisflex/codegen/config/TableConfig.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/zh/core/table.md b/docs/zh/core/table.md index cc58e1ba..7140f1d1 100644 --- a/docs/zh/core/table.md +++ b/docs/zh/core/table.md @@ -15,7 +15,7 @@ public @interface Table { String value(); /** - * 数据库的 schema + * 数据库的 schema(模式) */ String schema() default ""; diff --git a/docs/zh/others/codegen.md b/docs/zh/others/codegen.md index b8763f48..1c89d9c3 100644 --- a/docs/zh/others/codegen.md +++ b/docs/zh/others/codegen.md @@ -394,7 +394,7 @@ public class TableConfig { private String tableName; /** - * 数据库的 schema + * 数据库的 schema(模式) */ private String schema; diff --git a/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/Table.java b/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/Table.java index ee84051b..c4a23ec6 100644 --- a/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/Table.java +++ b/mybatis-flex-annotation/src/main/java/com/mybatisflex/annotation/Table.java @@ -30,7 +30,7 @@ public @interface Table { String value(); /** - * 数据库的 schema + * 数据库的 schema(模式) */ String schema() default ""; diff --git a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/TableConfig.java b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/TableConfig.java index fa87c506..f403c11c 100644 --- a/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/TableConfig.java +++ b/mybatis-flex-codegen/src/main/java/com/mybatisflex/codegen/config/TableConfig.java @@ -27,7 +27,7 @@ public class TableConfig { private String tableName; /** - * 数据库的 schema + * 数据库的 schema(模式) */ private String schema;