deason 2 年之前
父節點
當前提交
888c31de7a

+ 7 - 0
upgrade-202209/20220908至现在-待升级内容.txt

@@ -37,4 +37,11 @@ SELECT * FROM ec_b_org_prop WHERE key_id in('34','35','36','37') LIMIT 100;
 
 云平台任务调度中心(配置新任务){
     处理考试过程中抓拍照片比对任务 faceVerifyJobHandler
+
+    INSERT INTO xxl_job_info(job_group, job_desc, add_time, update_time, author, alarm_email, schedule_type,
+                             schedule_conf, misfire_strategy, executor_route_strategy, executor_handler,
+                             executor_param, executor_block_strategy, executor_timeout, executor_fail_retry_count,
+                             glue_type, glue_source, glue_remark, glue_updatetime, child_jobid)
+    VALUES (1, '处理考试过程中抓拍照片比对任务', now(), now(), '管理员', '', 'FIX_RATE', '15', 'DO_NOTHING', 'SHARDING_BROADCAST',
+            'faceVerifyJobHandler', '', 'DISCARD_LATER', 0, 0, 'BEAN', '', 'GLUE代码初始化', now(), '');
 }

+ 9 - 0
upgrade-202304/20230420至现在-待升级内容.txt

@@ -28,10 +28,19 @@ CREATE TABLE ec_oe_exam_statistic
 alter table ec_e_exam_course_relation add column pass_score_line int(11) not null default 60;
 alter table ec_e_exam_course_relation add column good_score_line int(11) not null default 90;
 
+alter table ec_oes_exam_record_data add column random_paper bit(1) not null default 0;
+alter table ec_oes_exam_record_data add column paper_score double not null default 0;
 alter table ec_oe_exam_record_data add column random_paper bit(1) not null default 0;
 alter table ec_oe_exam_record_data add column paper_score double not null default 0;
 
 
+INSERT INTO xxl_job_info(job_group, job_desc, add_time, update_time, author, alarm_email, schedule_type,
+                         schedule_conf, misfire_strategy, executor_route_strategy, executor_handler,
+                         executor_param, executor_block_strategy, executor_timeout, executor_fail_retry_count,
+                         glue_type, glue_source, glue_remark, glue_updatetime, child_jobid)
+VALUES (1, '处理考试成绩统计任务', now(), now(), '管理员', '', 'FIX_RATE', '300', 'DO_NOTHING', 'ROUND',
+        'scoreStatisticJobHandler', '', 'DISCARD_LATER', 0, 0, 'BEAN', '', 'GLUE代码初始化', now(), '');
+
 
 MongoDB部分
 暂无