getColumns(DataSource dataSource, String tableName) {
- cn.hutool.db.meta.Table table = MetaUtil.getTableMeta(dataSource, tableName);
+ Table table = MetaUtil.getTableMeta(dataSource, tableName);
return table.getColumns();
}
}
diff --git a/continew-starter-data/continew-starter-data-core/src/main/java/top/continew/starter/data/core/util/Table.java b/continew-starter-data/continew-starter-data-core/src/main/java/top/continew/starter/data/core/util/Table.java
deleted file mode 100644
index 2b412111..00000000
--- a/continew-starter-data/continew-starter-data-core/src/main/java/top/continew/starter/data/core/util/Table.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
- *
- * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.gnu.org/licenses/lgpl.html
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package top.continew.starter.data.core.util;
-
-import java.io.Serial;
-import java.io.Serializable;
-import java.time.LocalDateTime;
-
-/**
- * 数据库表信息
- *
- * @author Charles7c
- * @since 1.0.0
- */
-public class Table implements Serializable {
-
- @Serial
- private static final long serialVersionUID = 1L;
-
- /**
- * 表名称
- */
- private String tableName;
-
- /**
- * 注释
- */
- private String comment;
-
- /**
- * 存储引擎
- */
- private String engine;
-
- /**
- * 字符集
- */
- private String charset;
-
- /**
- * 创建时间
- */
- private LocalDateTime createTime;
-
- /**
- * 修改时间
- */
- private LocalDateTime updateTime;
-
- public Table(String tableName) {
- this.tableName = tableName;
- }
-
- public String getTableName() {
- return tableName;
- }
-
- public void setTableName(String tableName) {
- this.tableName = tableName;
- }
-
- public String getComment() {
- return comment;
- }
-
- public void setComment(String comment) {
- this.comment = comment;
- }
-
- public String getEngine() {
- return engine;
- }
-
- public void setEngine(String engine) {
- this.engine = engine;
- }
-
- public String getCharset() {
- return charset;
- }
-
- public void setCharset(String charset) {
- this.charset = charset;
- }
-
- public LocalDateTime getCreateTime() {
- return createTime;
- }
-
- public void setCreateTime(LocalDateTime createTime) {
- this.createTime = createTime;
- }
-
- public LocalDateTime getUpdateTime() {
- return updateTime;
- }
-
- public void setUpdateTime(LocalDateTime updateTime) {
- this.updateTime = updateTime;
- }
-}