|
@@ -197,16 +197,17 @@ public class ExamServiceImpl implements ExamService {
|
|
|
* com.qmth.examcloud.core.examwork.service.bean.ExamOrgInfo)
|
|
|
*/
|
|
|
@Override
|
|
|
- public ExamOrgEntity saveExamOrg(ExamOrgInfo examInfo) {
|
|
|
+ public ExamOrgEntity saveExamOrg(ExamOrgInfo examOrgInfo) {
|
|
|
ExamOrgEntity examOrgEntity = new ExamOrgEntity();
|
|
|
- examOrgEntity.setId(examInfo.getId());
|
|
|
- examOrgEntity.setBeginTime(examInfo.getBeginTime());
|
|
|
- examOrgEntity.setEndTime(examInfo.getEndTime());
|
|
|
- examOrgEntity.setId(examInfo.getId());
|
|
|
- examOrgEntity.setRootOrgId(examInfo.getRootOrgId());
|
|
|
- examOrgEntity.setExamId(examInfo.getExamId());
|
|
|
-
|
|
|
- Map<ExamProperty, String> map = checkAndGetExamProperties(examInfo.getProperties());
|
|
|
+ examOrgEntity.setId(examOrgInfo.getId());
|
|
|
+ examOrgEntity.setBeginTime(examOrgInfo.getBeginTime());
|
|
|
+ examOrgEntity.setEndTime(examOrgInfo.getEndTime());
|
|
|
+ examOrgEntity.setId(examOrgInfo.getId());
|
|
|
+ examOrgEntity.setRootOrgId(examOrgInfo.getRootOrgId());
|
|
|
+ examOrgEntity.setExamId(examOrgInfo.getExamId());
|
|
|
+ examOrgEntity.setOrgId(examOrgInfo.getOrgId());
|
|
|
+
|
|
|
+ Map<ExamProperty, String> map = checkAndGetExamProperties(examOrgInfo.getProperties());
|
|
|
|
|
|
ExamOrgEntity saved = examOrgRepo.save(examOrgEntity);
|
|
|
|