Commit 206df849 authored by 黄奎's avatar 黄奎

Merge branch 'master' of http://gitlab.oytour.com/Kui2/education

parents 7c7a73c3 7eccf351
......@@ -1016,6 +1016,7 @@ namespace Edu.Module.Exam
item.PaperId = model.PaperId;
item.Group_Id = model.Group_Id;
item.School_Id = model.School_Id;
item.ExamStatus = ExamTestStatusEnum.NotFinishTest;
examination_StudentRepository.Insert(item);
}
}
......@@ -1044,8 +1045,10 @@ namespace Edu.Module.Exam
dItem.PaperId = model.PaperId;
dItem.Group_Id = model.Group_Id;
dItem.School_Id = model.School_Id;
if (dItem.Id == 0)
{
dItem.ExamStatus = ExamTestStatusEnum.NotFinishTest;
examination_StudentRepository.Insert(dItem);
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment