Browse Source

3.2.3 试卷编号在考试下唯一bug修改

xiaofei 2 years ago
parent
commit
2ea862dcaf

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

@@ -746,7 +746,7 @@ public class ExamDetailServiceImpl extends ServiceImpl<ExamDetailMapper, ExamDet
             stringJoiner.add(String.join(",", stringList));
             stringJoiner.add(String.join(",", stringList));
         }
         }
         if (!ticketNumberRepeatList.isEmpty()) {
         if (!ticketNumberRepeatList.isEmpty()) {
-            stringJoiner.add("考号[" + String.join(",", ticketNumberRepeatList) + "]在当前学期下已存在");
+            stringJoiner.add("考号[" + String.join(",", ticketNumberRepeatList) + "]在当前考试下已存在");
         }
         }
         if (stringJoiner.toString().length() > 1) {
         if (stringJoiner.toString().length() > 1) {
             throw ExceptionResultEnum.ERROR.exception(stringJoiner.toString());
             throw ExceptionResultEnum.ERROR.exception(stringJoiner.toString());