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

17 lines
821 B
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.sys_config
(
config_id bigint not null comment '参数主键'
primary key,
config_name varchar(100) default '' null comment '参数名称',
config_key varchar(100) default '' null comment '参数键名',
config_value varchar(500) default '' null comment '参数键值',
config_type char default 'N' null comment '系统内置Y是 N否',
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;