***** ***** ***** ***** ***** ***** ***** 数据库变更部分(!!!任何!!!表或字段的变化罗列此处) ***** ***** ***** ***** ***** ***** ***** MySql部分 1.新增表ec_e_exam_ip_limit(考试ip限制表) CREATE TABLE `ec_e_exam_ip_limit` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `exam_id` bigint(20) NOT NULL COMMENT '考试id', `ip` varchar(255) DEFAULT NULL COMMENT 'ip', `limit_type` varchar(50) DEFAULT NULL, `creation_time` datetime DEFAULT NULL, `update_time` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `IDX_E_E_001001` (`exam_id`), KEY `IDX_E_E_001002` (`limit_type`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; 2.添加索引 ALTER TABLE ec_oes_exam_record_data ADD INDEX IDX_E_O_E_R_D_006 (`creation_time`); ALTER TABLE ec_oes_exam_record_data ADD INDEX IDX_E_O_E_R_D_007 (`base_paper_id`); ALTER TABLE ec_oe_exam_record_data ADD INDEX IDX_E_O_E_R_D_007 (`base_paper_id`); 3.表ec_m_export_task字段export_param长度修改 alter table ec_oe_export_task modify column export_param varchar(1000); 4.表ec_e_user_notice 新增字段has_recalled alter table ec_e_user_notice add has_recalled bit(1) comment '是否已撤回'; MongoDB部分 todo Redis部分 todo ***** ***** ***** ***** ***** ***** ***** 数据割接工具 ***** ***** ***** ***** ***** ***** ***** 题库试卷结构刷入课程ID,执行examcloud-oe-tool工程下FillCourseIdService 题库试题属性增加code字段,老数据刷入id值为code,执行examcloud-oe-tool工程下FillPropertyCodeService ***** ***** ***** ***** ***** ***** ***** 配置文件变更部分 ***** ***** ***** ***** ***** ***** ***** todo ***** ***** ***** ***** ***** ***** ***** 菜单变更部分 ***** ***** ***** ***** ***** ***** ***** 题库管理菜单 --> 卷库管理 --> 试卷仓库管理 【编码:exam_paper_storage】【属性1:menu】 【权重:10】 【属性5:/questions/paper_storage/0】 ***** ***** ***** ***** ***** ***** ***** 其它参数变更部分 ***** ***** ***** ***** ***** ***** ***** todo ***** ***** ***** ***** ***** ***** ***** 其它 ***** ***** ***** ***** ***** ***** ***** todo