数据库设计

This commit is contained in:
mindskip 2021-02-18 09:26:06 +08:00
parent 7b549f3079
commit 70ecf0aed8

View File

@ -54,6 +54,28 @@ github - mysql [https://github.com/mindskip/xzs-mysql](https://github.com/min
![架构图](https://gitee.com/mindskip/xzs-mysql/raw/master/doc/image/frame/1.png)
## 数据库设计
### 试卷表t_exam_paper
| 字段名 | 类型 | 注释 |
| ---- | ---- | ---- |
| id |int | |
| name |varchar | 试卷名称 |
| subject_id |int | 学科 |
| paper_type |int | 试卷类型( 1固定试卷 4.时段试卷 6.任务试卷) |
| grade_level |int | 年级 |
| score |int | 试卷总分(千分制) |
| question_count |int | 题目数量 |
| suggest_time |int | 建议时长(分钟) |
| limit_start_time |datetime | 时段试卷 开始时间 |
| limit_end_time |datetime | 时段试卷 结束时间 |
| frame_text_content_id |int | 试卷框架 内容为JSON |
| create_user |int | |
| create_time |datetime | |
| deleted | bit | |
| task_exam_id | int | |
## 项目开发
### 开发说明