This commit is contained in:
laodaming
2023-06-06 15:01:13 +08:00
parent 213665eb59
commit cf3a02ae7e
12 changed files with 163 additions and 369 deletions

View File

@@ -0,0 +1,10 @@
-- fusentest.fs_product_model3d_light definition
CREATE TABLE `fs_product_model3d_light` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL COMMENT '灯光名称',
`info` text NOT NULL COMMENT '灯光数据json格式',
`status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态值1显示0删除',
`ctime` int(11) DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='模型-灯光组表';