|
@@ -1,16 +1,11 @@
|
1
|
1
|
package com.xhkjedu.sstudy.service.paperstudent;
|
2
|
2
|
|
3
|
|
-import com.alibaba.fastjson.JSON;
|
4
|
|
-import com.xhkjedu.sstudy.mapper.paper.PaperQtypeQuestionMapper;
|
5
|
3
|
import com.xhkjedu.sstudy.mapper.paperstudent.PaperStudentMapper;
|
6
|
4
|
import com.xhkjedu.sstudy.mapper.paperstudent.PaperStudentQuestionMapper;
|
7
|
|
-import com.xhkjedu.sstudy.model.paper.TPaperQtypeQuestion;
|
8
|
5
|
import com.xhkjedu.sstudy.model.paperstudent.TPaperStudentQuestion;
|
9
|
6
|
import com.xhkjedu.sstudy.vo.paperstudent.PaperStudentQuestionVo;
|
10
|
|
-import com.xhkjedu.sstudy.vo.paperstudent.StudentPaperVo;
|
11
|
7
|
import com.xhkjedu.sstudy.vo.paperstudent.StudentVo;
|
12
|
8
|
import com.xhkjedu.utils.N_Utils;
|
13
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
14
|
9
|
import org.springframework.stereotype.Service;
|
15
|
10
|
|
16
|
11
|
import javax.annotation.Resource;
|
|
@@ -19,7 +14,6 @@ import java.util.HashMap;
|
19
|
14
|
import java.util.List;
|
20
|
15
|
import java.util.Map;
|
21
|
16
|
import java.util.stream.Collectors;
|
22
|
|
-import java.util.stream.Stream;
|
23
|
17
|
|
24
|
18
|
/**
|
25
|
19
|
* @author ywx
|
|
@@ -69,6 +63,7 @@ public class PaperStudentQuestionService {
|
69
|
63
|
* @return java.util.List<com.xhkjedu.vo.paperstudent.PaperStudentQuestionVo>
|
70
|
64
|
**/
|
71
|
65
|
public List<PaperStudentQuestionVo> listCorrectQuestion(Integer psid) {
|
|
66
|
+ //2024-09-19产品南总确认获取试题时不获取未作答自动批改的试题
|
72
|
67
|
return paperStudentQuestionMapper.listCorrectQuestion(psid);
|
73
|
68
|
}
|
74
|
69
|
|