|
@@ -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部分
|
|
|
暂无
|