Merge pull request #66 from mindskip/mindskip

数据库设计
This commit is contained in:
思维跳跃科技 2021-02-20 13:44:20 +08:00 committed by GitHub
commit 918c4c1de8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,7 +80,7 @@ github - mysql [https://github.com/mindskip/xzs-mysql](https://github.com/min
| 字段名 | 类型 | 注释 | | 字段名 | 类型 | 注释 |
| ---- | ---- | ---- | | ---- | ---- | ---- |
| id |int | | | id | int | |
| exam_paper_id | int | | | exam_paper_id | int | |
| paper_name | varchar | 试卷名称 | | paper_name | varchar | 试卷名称 |
| paper_type | int | 试卷类型( 1固定试卷 2临时试卷 3班级试卷 4.时段试卷 ) | | paper_type | int | 试卷类型( 1固定试卷 2临时试卷 3班级试卷 4.时段试卷 ) |
@ -96,6 +96,26 @@ github - mysql [https://github.com/mindskip/xzs-mysql](https://github.com/min
| create_time | datetime | 提交时间 | | create_time | datetime | 提交时间 |
| task_exam_id | int | | | task_exam_id | int | |
### 试卷题目答案表 t_exam_paper_question_customer_answer
| 字段名 | 类型 | 注释 |
| ---- | ---- | ---- |
| id | int | |
| question_id | int | 题目Id |
| exam_paper_id | int | 答案Id |
| exam_paper_answer_id | int | |
| question_type | int | 题型 |
| subject_id | int | 学科 |
| customer_score | int | 得分 |
| question_score | int | 题目原始分数 |
| question_text_content_id | int | 问题内容 |
| answer | varchar | 做题答案 |
| text_content_id | int | 做题内容 |
| do_right | bit | 是否正确 |
| create_user | int | 做题人 |
| create_time | datetime | |
| item_order | int | |
## 项目开发 ## 项目开发
### 开发说明 ### 开发说明