数据库设计
This commit is contained in:
parent
70ecf0aed8
commit
038c6e4637
@ -56,24 +56,44 @@ github - mysql :[https://github.com/mindskip/xzs-mysql](https://github.com/min
|
|||||||
|
|
||||||
## 数据库设计
|
## 数据库设计
|
||||||
|
|
||||||
### 试卷表:t_exam_paper
|
### 试卷表 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 | |
|
||||||
|
|
||||||
|
### 试卷答案表 t_exam_paper_answer
|
||||||
|
|
||||||
| 字段名 | 类型 | 注释 |
|
| 字段名 | 类型 | 注释 |
|
||||||
| ---- | ---- | ---- |
|
| ---- | ---- | ---- |
|
||||||
| id |int | |
|
| id |int | |
|
||||||
| name |varchar | 试卷名称 |
|
| exam_paper_id | int | |
|
||||||
| subject_id |int | 学科 |
|
| paper_name | varchar | 试卷名称 |
|
||||||
| paper_type |int | 试卷类型( 1固定试卷 4.时段试卷 6.任务试卷) |
|
| paper_type | int | 试卷类型( 1固定试卷 2临时试卷 3班级试卷 4.时段试卷 ) |
|
||||||
| grade_level |int | 年级 |
|
| subject_id | int | 学科 |
|
||||||
| score |int | 试卷总分(千分制) |
|
| system_score | int | 系统判定得分 |
|
||||||
| question_count |int | 题目数量 |
|
| user_score | int | 最终得分(千分制) |
|
||||||
| suggest_time |int | 建议时长(分钟) |
|
| paper_score | int | 试卷总分 |
|
||||||
| limit_start_time |datetime | 时段试卷 开始时间 |
|
| question_correct | int | 做对题目数量 |
|
||||||
| limit_end_time |datetime | 时段试卷 结束时间 |
|
| question_count | int | 题目总数量 |
|
||||||
| frame_text_content_id |int | 试卷框架 内容为JSON |
|
| do_time | int | 做题时间(秒) |
|
||||||
| create_user |int | |
|
| status | int | 试卷状态(1待判分 2完成) |
|
||||||
| create_time |datetime | |
|
| create_user | int | 学生 |
|
||||||
| deleted | bit | |
|
| create_time | datetime | 提交时间 |
|
||||||
| task_exam_id | int | |
|
| task_exam_id | int | |
|
||||||
|
|
||||||
## 项目开发
|
## 项目开发
|
||||||
|
Loading…
Reference in New Issue
Block a user