diff --git a/frontend/src/api/generator/gencode.ts b/frontend/src/api/generator/gencode.ts index 20688d61..c40573d0 100644 --- a/frontend/src/api/generator/gencode.ts +++ b/frontend/src/api/generator/gencode.ts @@ -132,14 +132,12 @@ export interface TablePageVO { /** 表描述 */ table_comment: string; - /** 存储引擎 */ - engine: string; + /** 数据库名称 */ + database_name: string; - /** 字符集排序规则 */ - table_collation: string; + /** 表单类型 */ + table_type: string; - /** 创建时间 */ - create_time: string; } /** 代码生成表输出对象 */ diff --git a/frontend/src/components/Pagination/index.vue b/frontend/src/components/Pagination/index.vue index 235fef35..ae1e7036 100644 --- a/frontend/src/components/Pagination/index.vue +++ b/frontend/src/components/Pagination/index.vue @@ -3,6 +3,7 @@