|
@@ -300,7 +300,7 @@ public class ClientServiceImpl implements ClientService {
|
|
|
List<String> studentPaperTypes = examStudentService.listByExamDetailCourseId(examDetailCourseId);
|
|
|
Object exposedPaperType = examDetailCours.get("exposedPaperType");
|
|
|
Set<String> exposedPaperSet = Objects.isNull(exposedPaperType) ? new HashSet<>() : new HashSet<>(Arrays.asList(exposedPaperType.toString().split(",")));
|
|
|
- Object unexposedPaperType = examDetailCours.get("unexposedPaperType").toString();
|
|
|
+ Object unexposedPaperType = examDetailCours.get("unexposedPaperType");
|
|
|
Set<String> unexposedPaperSet = Objects.isNull(unexposedPaperType) ? new HashSet<>() : new HashSet<>(Arrays.asList(unexposedPaperType.toString().split(",")));
|
|
|
if (!studentPaperTypes.isEmpty()) {
|
|
|
for (String studentPaperType : studentPaperTypes) {
|