|
@@ -14,6 +14,7 @@ const questionInfo = new Schema({
|
|
|
topic: { type: String, required: false, maxLength: 500 }, // 题目
|
|
|
answer: { type: String, required: false, maxLength: 500 }, // 答案
|
|
|
option: { type: [ optionInfo ], select: true }, // 选项
|
|
|
+ score: { type: String, required: false, maxLength: 500 }, // 分数
|
|
|
});
|
|
|
|
|
|
// 作业表
|