|
@@ -204,9 +204,9 @@ public class SyncExamDataCloudServiceProvider extends ControllerSupport implemen
|
|
|
|
|
|
ExamRecordDataEntity examRecordDataEntity = copyExamRecordDataEntityFrom(examRecordData);
|
|
|
|
|
|
- examRecordDataRepo.save(examRecordDataEntity);
|
|
|
+ ExamRecordDataEntity result = examRecordDataRepo.save(examRecordDataEntity);
|
|
|
|
|
|
- return examRecordDataEntity.getId();
|
|
|
+ return result.getId();
|
|
|
}
|
|
|
|
|
|
private ExamRecordDataEntity copyExamRecordDataEntityFrom(ExamRecordDataBean examRecordData) {
|