|
|
|
@ -21,6 +21,7 @@ import com.ruoyi.system.domain.paper.dto.ext.PaperQuDetailDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.request.PaperAnswerDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.request.PaperListReqDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.response.ExamDetailRespDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.response.ExamResultRespDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.dto.response.PaperListRespDTO;
|
|
|
|
|
import com.ruoyi.system.domain.paper.enums.PaperState;
|
|
|
|
|
import com.ruoyi.system.domain.qu.ElQu;
|
|
|
|
@ -326,6 +327,9 @@ public class PaperManager {
|
|
|
|
|
public ExamDetailRespDTO paperDetail(String paperId) {
|
|
|
|
|
// 试题基本信息
|
|
|
|
|
ElPaper paper = paperService.getById(paperId);
|
|
|
|
|
if(Objects.isNull(paper)){
|
|
|
|
|
throw new ServiceException("试题基本信息为空");
|
|
|
|
|
}
|
|
|
|
|
ExamDetailRespDTO respDTO = Convert.convert(ExamDetailRespDTO.class, paper);
|
|
|
|
|
//查询条件
|
|
|
|
|
QueryWrapper<ElPaperQu> wrapper = new QueryWrapper<>();
|
|
|
|
@ -365,6 +369,9 @@ public class PaperManager {
|
|
|
|
|
public PaperQuDetailDTO findQuDetail(String paperId, String quId) {
|
|
|
|
|
// 问题
|
|
|
|
|
ElQu qu = quService.getById(quId);
|
|
|
|
|
if(Objects.isNull(qu)){
|
|
|
|
|
throw new ServiceException("问题信息为空");
|
|
|
|
|
}
|
|
|
|
|
// 基本信息
|
|
|
|
|
QueryWrapper<ElPaperQu> wrapper = new QueryWrapper<>();
|
|
|
|
|
wrapper.lambda().eq(ElPaperQu::getPaperId, paperId)
|
|
|
|
@ -478,5 +485,15 @@ public class PaperManager {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ExamResultRespDTO paperResult(String paperId) {
|
|
|
|
|
// 试题基本信息
|
|
|
|
|
ElPaper paper = paperService.getById(paperId);
|
|
|
|
|
ExamResultRespDTO respDTO = Convert.convert(ExamResultRespDTO.class, paper);
|
|
|
|
|
List<PaperQuDetailDTO> quList = paperQuService.listForPaperResult(paperId);
|
|
|
|
|
respDTO.setQuList(quList);
|
|
|
|
|
return respDTO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|