|
@@ -16,6 +16,7 @@ import com.qmth.boot.core.exception.StatusException;
|
|
|
|
|
|
import cn.com.qmth.am.bean.OcrDto;
|
|
|
import cn.com.qmth.am.bean.StudentScoreVo;
|
|
|
+import cn.com.qmth.am.config.SysProperty;
|
|
|
import cn.com.qmth.am.entity.QuestionEntity;
|
|
|
import cn.com.qmth.am.enums.DataStatus;
|
|
|
import cn.com.qmth.am.service.QuestionService;
|
|
@@ -31,6 +32,9 @@ public class StudentServiceImpl implements StudentService {
|
|
|
@Autowired
|
|
|
private StudentService studentService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private SysProperty sysProperty;
|
|
|
+
|
|
|
@Autowired
|
|
|
private StmmsService stmmsService;
|
|
|
|
|
@@ -58,7 +62,7 @@ public class StudentServiceImpl implements StudentService {
|
|
|
}
|
|
|
for (List<QuestionEntity> qlist : qmap.values()) {
|
|
|
List<String> students = stmmsService.getUploadStudent(qlist.get(0).getExamId(),
|
|
|
- qlist.get(0).getSubjectCode());
|
|
|
+ qlist.get(0).getSubjectCode(), sysProperty.getStudentCount());
|
|
|
if (CollectionUtils.isEmpty(students)) {
|
|
|
continue;
|
|
|
}
|