This commit is contained in:
laodaming
2023-06-07 19:47:45 +08:00
parent dc73ff1679
commit cef191a6e4
15 changed files with 415 additions and 21 deletions

10
ddl/fs_standard_logo.sql Normal file
View File

@@ -0,0 +1,10 @@
-- fusentest.fs_standard_logo definition
CREATE TABLE `fs_standard_logo` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(20) CHARACTER SET utf8mb4 NOT NULL COMMENT 'logo名称',
`image` varchar(255) CHARACTER SET utf8mb4 NOT NULL COMMENT '图片地址',
`ctime` int(10) NOT NULL DEFAULT '0' COMMENT '添加时间',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态 1正常 0删除',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='标准logo';