|
@@ -16,6 +16,7 @@ const GroupSchema = {
|
|
|
classid: { type: String, required: false, maxLength: 500 }, // 班级id
|
|
|
students: { type: [ stuInfo ], select: true }, // 学生信息
|
|
|
score: { type: String, required: false, maxLength: 500 }, // 分数
|
|
|
+ status: { type: String, required: true, maxLength: 500, default: '0' }, // 状态,0-未确认,1-确认
|
|
|
};
|
|
|
|
|
|
|