123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- ***** ***** ***** ***** ***** ***** *****
- 数据库变更部分(!!!任何!!!表或字段的变化罗列此处)
- ***** ***** ***** ***** ***** ***** *****
- 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) DEFAULT 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;
- MongoDB部分
- todo
- Redis部分
- todo
- ***** ***** ***** ***** ***** ***** *****
- 数据割接工具
- ***** ***** ***** ***** ***** ***** *****
- todo
- ***** ***** ***** ***** ***** ***** *****
- 配置文件变更部分
- ***** ***** ***** ***** ***** ***** *****
- todo
- ***** ***** ***** ***** ***** ***** *****
- 菜单变更部分
- ***** ***** ***** ***** ***** ***** *****
- todo
- ***** ***** ***** ***** ***** ***** *****
- 其它参数变更部分
- ***** ***** ***** ***** ***** ***** *****
- todo
- ***** ***** ***** ***** ***** ***** *****
- 其它
- ***** ***** ***** ***** ***** ***** *****
- todo
|