feat:增加系统配置

This commit is contained in:
曾文豪
2023-01-03 16:05:25 +08:00
parent fe8599f315
commit fff7ca5b5b
10 changed files with 341 additions and 6 deletions

View File

@@ -26,8 +26,8 @@ CREATE TABLE `core_config_system`
`update_time` datetime NOT NULL,
`is_deleted` int(4) NOT NULL DEFAULT '0',
`config_key` varchar(255) NOT NULL,
`config_val` text NOT NULL,
`config_type` int(6) NOT NULL DEFAULT '0' COMMENT '类型:0-文本,1-图片,2-文件',
`config_val` text,
`config_type` int(6) NOT NULL DEFAULT '0' COMMENT '类型:0-文本,1-图片,2-开关',
`remark` varchar(500) DEFAULT NULL COMMENT '说明',
`extra` varchar(255) DEFAULT NULL COMMENT '额外配置',
`read_only` int(6) NOT NULL DEFAULT '0' COMMENT '0-否1-是',