| 1234567891011121314151617181920212223242526272829303132 | /* Navicat Premium Dump SQL Source Server         : qdhome.iot321.top-dev Source Server Type    : MySQL Source Server Version : 50740 (5.7.40-log) Source Host           : qdhome.iot321.top:33103 Source Schema         : pla-chem-sim-dev-1 Target Server Type    : MySQL Target Server Version : 50740 (5.7.40-log) File Encoding         : 65001 Date: 15/12/2024 19:23:02*/SET NAMES utf8mb4;SET FOREIGN_KEY_CHECKS = 0;-- ------------------------------ Table structure for sim_real_exam_collection_dept-- ----------------------------DROP TABLE IF EXISTS `sim_real_exam_collection_dept`;CREATE TABLE `sim_real_exam_collection_dept`  (  `rel_id` bigint(20) NOT NULL AUTO_INCREMENT,  `exam_collection_id` bigint(20) NOT NULL DEFAULT 0 COMMENT '正式考试集合ID',  `dept_id` bigint(20) NOT NULL DEFAULT 0 COMMENT '班级ID/部门ID',  `update_time` datetime NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,  PRIMARY KEY (`rel_id`) USING BTREE) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'sim-考试集合班级关联表' ROW_FORMAT = DYNAMIC;SET FOREIGN_KEY_CHECKS = 1;
 |