Răsfoiți Sursa

客户端bug修改-无未曝光试卷问题

xiaof 4 ani în urmă
părinte
comite
70003ec500

+ 1 - 1
distributed-print-business/src/main/java/com/qmth/distributed/print/business/service/impl/ClientServiceImpl.java

@@ -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) {