Files
fad_oa/script/sql/20241120表结构备份/gen_table.sql

27 lines
1.8 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create table fad_oa.gen_table
(
table_id bigint not null comment '编号'
primary key,
table_name varchar(200) default '' null comment '表名称',
table_comment varchar(500) default '' null comment '表描述',
sub_table_name varchar(64) null comment '关联子表的表名',
sub_table_fk_name varchar(64) null comment '子表关联的外键名',
class_name varchar(100) default '' null comment '实体类名称',
tpl_category varchar(200) default 'crud' null comment '使用的模板crud单表操作 tree树表操作',
package_name varchar(100) null comment '生成包路径',
module_name varchar(30) null comment '生成模块名',
business_name varchar(30) null comment '生成业务名',
function_name varchar(50) null comment '生成功能名',
function_author varchar(50) null comment '生成功能作者',
gen_type char default '0' null comment '生成代码方式0zip压缩包 1自定义路径',
gen_path varchar(200) default '/' null comment '生成路径(不填默认项目路径)',
options varchar(1000) null comment '其它生成选项',
create_by varchar(64) default '' null comment '创建者',
create_time datetime null comment '创建时间',
update_by varchar(64) default '' null comment '更新者',
update_time datetime null comment '更新时间',
remark varchar(500) null comment '备注'
)
comment '代码生成业务表' charset = utf8mb4;