/* Navicat Premium Dump SQL Source Server : mysql Source Server Type : MySQL Source Server Version : 50520 (5.5.20) Source Host : localhost:3306 Source Schema : intelligent Target Server Type : MySQL Target Server Version : 50520 (5.5.20) File Encoding : 65001 Date: 22/04/2026 17:31:14 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for product_productlong -- ---------------------------- DROP TABLE IF EXISTS `product_productlong`; CREATE TABLE `product_productlong` ( `id` int(11) NOT NULL AUTO_INCREMENT, `product_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '产品id', `product_data` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '日志信息', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `create_user` bigint(255) NULL DEFAULT NULL COMMENT '创建人', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact; -- ---------------------------- -- Records of product_productlong -- ---------------------------- SET FOREIGN_KEY_CHECKS = 1;