/* Navicat Premium Dump SQL Source Server : localhost Source Server Type : MySQL Source Server Version : 50728 (5.7.28-log) Source Host : localhost:3306 Source Schema : zuihou_base_yj_0000 Target Server Type : MySQL Target Server Version : 50728 (5.7.28-log) File Encoding : 65001 Date: 09/11/2024 13:54:54 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for imcs_cutting_tool_syn_record -- ---------------------------- DROP TABLE IF EXISTS `imcs_cutting_tool_syn_record`; CREATE TABLE `imcs_cutting_tool_syn_record` ( `id` bigint(20) NOT NULL, `machine_id` bigint(20) NOT NULL, `cutting_tool_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '日志类型', `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '内容', `order_id` bigint(20) NULL DEFAULT NULL, `workpiece_id` bigint(20) NULL DEFAULT NULL, `create_time` datetime NULL DEFAULT NULL, `create_user` bigint(20) NULL DEFAULT NULL, `update_time` datetime NULL DEFAULT NULL, `update_user` bigint(20) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;