-- 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='模型-灯光组表';