瀏覽代碼

网考存阅卷明细分

xiatian 8 月之前
父節點
當前提交
d811310ce3
共有 1 個文件被更改,包括 19 次插入1 次删除
  1. 19 1
      upgrade-202409/20240903至现在-待升级内容.txt

+ 19 - 1
upgrade-202409/20240903至现在-待升级内容.txt

@@ -6,7 +6,25 @@ release_v5.0.5
 ***** ***** ***** ***** ***** ***** *****
 
 MySql部分
-暂无
+CREATE TABLE `ec_oe_mark_result` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `root_org_id` bigint(20) NOT NULL,
+  `exam_id` bigint(20) NOT NULL,  
+  `work_id` bigint(20) NOT NULL,
+  `exam_record_data_id` bigint(20) NOT NULL,
+  `course_id` bigint(20) NOT NULL,
+  `student_paper_id` bigint(20) NOT NULL,
+  `score` double NOT NULL,
+  `orders` int(11) NOT NULL,
+  `question_id` varchar(255) NOT NULL,  
+  `main_number` int(11) NOT NULL,
+  `sub_number` int(11) NOT NULL,
+  `creation_time` datetime NOT NULL,
+  `update_time` datetime NOT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `IDX_01` (`student_paper_id`,`orders`),
+  UNIQUE KEY `IDX_02` (`exam_record_data_id`,`orders`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
 MongoDB部分
 暂无