|
|
@ -1,9 +1,13 @@
|
|
|
|
package com.ruoyi.web.controller.manager;
|
|
|
|
package com.ruoyi.web.controller.manager;
|
|
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.system.domain.exam.dto.ExamDTO;
|
|
|
|
import com.ruoyi.system.domain.exam.dto.ExamDTO;
|
|
|
|
|
|
|
|
import com.ruoyi.system.domain.exam.dto.request.ExamSaveReqDTO;
|
|
|
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.request.PaperListReqDTO;
|
|
|
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.response.PaperListRespDTO;
|
|
|
|
import com.ruoyi.system.domain.userexam.ElUserExam;
|
|
|
|
import com.ruoyi.system.domain.userexam.ElUserExam;
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.request.UserExamReqDTO;
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.request.UserExamReqDTO;
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.response.UserExamRespDTO;
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.response.UserExamRespDTO;
|
|
|
|
|
|
|
|
import com.ruoyi.system.service.ElPaperService;
|
|
|
|
import com.ruoyi.system.service.ElUserExamService;
|
|
|
|
import com.ruoyi.system.service.ElUserExamService;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
|
|
|
@ -28,6 +32,10 @@ public class UserExamManager {
|
|
|
|
private ElUserExamService elUserExamService;
|
|
|
|
private ElUserExamService elUserExamService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
private ElPaperService paperService;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -76,4 +84,11 @@ public class UserExamManager {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elUserExamService.updateById(record);
|
|
|
|
elUserExamService.updateById(record);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<PaperListRespDTO> detail(String examId,Long userId) {
|
|
|
|
|
|
|
|
PaperListReqDTO paperListReqDTO = new PaperListReqDTO();
|
|
|
|
|
|
|
|
paperListReqDTO.setUserId(userId);
|
|
|
|
|
|
|
|
paperListReqDTO.setExamId(examId);
|
|
|
|
|
|
|
|
return paperService.paging(paperListReqDTO);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|