|
@@ -266,6 +266,7 @@ public class ExamStudentController extends ControllerSupport {
|
|
|
@RequestBody ExamStudentDomain examStudent) {
|
|
|
Long rootOrgId = getRootOrgId();
|
|
|
examStudent.setRootOrgId(rootOrgId);
|
|
|
+ examStudent.setInfoCollector(getAccessUser().getDisplayName());
|
|
|
return saveExamStudent(examStudent);
|
|
|
}
|
|
|
|
|
@@ -281,6 +282,7 @@ public class ExamStudentController extends ControllerSupport {
|
|
|
public ExamStudentDomain updateExamStudent(@RequestBody ExamStudentDomain examStudent) {
|
|
|
Long rootOrgId = getRootOrgId();
|
|
|
examStudent.setRootOrgId(rootOrgId);
|
|
|
+ examStudent.setInfoCollector(getAccessUser().getDisplayName());
|
|
|
return saveExamStudent(examStudent);
|
|
|
}
|
|
|
|
|
@@ -319,6 +321,7 @@ public class ExamStudentController extends ControllerSupport {
|
|
|
saveExamStudentReq.setStudentCode(examStudent.getStudentCode());
|
|
|
saveExamStudentReq.setStudentName(examStudent.getStudentName());
|
|
|
saveExamStudentReq.setStudentId(studentId);
|
|
|
+ saveExamStudentReq.setInfoCollector(examStudent.getInfoCollector());
|
|
|
|
|
|
SaveExamStudentResp saveExamStudentResp = examStudentCloudService
|
|
|
.saveExamStudent(saveExamStudentReq);
|