imcs_cutting_tool_syn_record.sql 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Navicat Premium Dump SQL
  3. Source Server : localhost
  4. Source Server Type : MySQL
  5. Source Server Version : 50728 (5.7.28-log)
  6. Source Host : localhost:3306
  7. Source Schema : zuihou_base_yj_0000
  8. Target Server Type : MySQL
  9. Target Server Version : 50728 (5.7.28-log)
  10. File Encoding : 65001
  11. Date: 09/11/2024 13:54:54
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for imcs_cutting_tool_syn_record
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `imcs_cutting_tool_syn_record`;
  19. CREATE TABLE `imcs_cutting_tool_syn_record` (
  20. `id` bigint(20) NOT NULL,
  21. `machine_id` bigint(20) NOT NULL,
  22. `cutting_tool_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  23. `type` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '日志类型',
  24. `content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL COMMENT '内容',
  25. `order_id` bigint(20) NULL DEFAULT NULL,
  26. `workpiece_id` bigint(20) NULL DEFAULT NULL,
  27. `create_time` datetime NULL DEFAULT NULL,
  28. `create_user` bigint(20) NULL DEFAULT NULL,
  29. `update_time` datetime NULL DEFAULT NULL,
  30. `update_user` bigint(20) NULL DEFAULT NULL,
  31. PRIMARY KEY (`id`) USING BTREE
  32. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic;
  33. SET FOREIGN_KEY_CHECKS = 1;