YuanPan 7 년 전
부모
커밋
c3062369e9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      exam-work-api/src/main/java/cn/com/qmth/examcloud/service/examwork/api/ExamStudentApi.java

+ 1 - 1
exam-work-api/src/main/java/cn/com/qmth/examcloud/service/examwork/api/ExamStudentApi.java

@@ -293,7 +293,7 @@ public class ExamStudentApi {
         for (Object[] objects : resultList) {
             Long orgId = ((BigInteger) objects[0]).longValue();
             Boolean finished = (Boolean) objects[1];
-            Integer count = (Integer) objects[2];
+            Integer count = ((BigInteger) objects[2]).intValue();
 
 
             boolean found = false;