| | |
| | | studentExamInfoVO.setStatus(examSubmitTemp.getStatus()); |
| | | studentExamInfoVO.setDoTime(examSubmitTemp.getDoTime()); |
| | | } else { |
| | | studentExamInfoVO.setMarkPaperStatus(ExamSubmitTempStatusEnum.temp); |
| | | //不存在考试记录 |
| | | studentExamInfoVO.setStatus(ExamSubmitTempStatusEnum.temp); |
| | | //根据Score表判断 |
| | | ExamPaperScore paperScore = examPaperScoreMapper.getByExamIdUserId(exam.getId(), userId); |
| | | if(paperScore==null) { |
| | | studentExamInfoVO.setMarkPaperStatus(ExamSubmitTempStatusEnum.temp); |
| | | }else { |
| | | studentExamInfoVO.setMarkPaperStatus(ExamSubmitTempStatusEnum.finish); |
| | | } |
| | | studentExamInfoVO.setDoTime(0); |
| | | } |
| | | } |