rt-sim-training-service/sql/20221008-xia-paper_user_question.sql

35 lines
1.2 KiB
MySQL
Raw Normal View History

2022-10-08 15:22:26 +08:00
/*
Navicat Premium Data Transfer
Source Server : room
Source Server Type : MySQL
Source Server Version : 80029
Source Host : 192.168.3.233:3306
Source Schema : joylink
Target Server Type : MySQL
Target Server Version : 80029
File Encoding : 65001
2022-10-09 18:03:24 +08:00
Date: 09/10/2022 14:51:52
2022-10-08 15:22:26 +08:00
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for paper_user_question
-- ----------------------------
DROP TABLE IF EXISTS `paper_user_question`;
CREATE TABLE `paper_user_question` (
`id` bigint NOT NULL AUTO_INCREMENT COMMENT '用户试卷试题结果id',
`pu_id` bigint NOT NULL COMMENT '用户试卷paper_user的id',
2022-10-09 18:03:24 +08:00
`org_id` bigint NULL DEFAULT NULL COMMENT '组织id',
2022-10-08 15:22:26 +08:00
`type` int NULL DEFAULT NULL COMMENT '试题类型1-理论题2-实训题',
`question_id` bigint NOT NULL COMMENT '试题id',
`state` int NULL DEFAULT NULL COMMENT '试题状态1-未做(初始)2-答对3-答错4-时间到结束',
PRIMARY KEY (`id`) USING BTREE
2022-10-09 18:03:24 +08:00
) ENGINE = InnoDB AUTO_INCREMENT = 151 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
2022-10-08 15:22:26 +08:00
SET FOREIGN_KEY_CHECKS = 1;