Joburgess 5 年之前
父節點
當前提交
d1c54b4845

+ 1 - 1
edu-user/edu-user-biz/src/main/java/com/keao/edu/user/service/impl/ExamRoomServiceImpl.java

@@ -438,7 +438,7 @@ public class ExamRoomServiceImpl extends BaseServiceImpl<Long, ExamRoom> impleme
 		List<ExamRoomStudentRelation> examRoomStudentWithOrgans = examRoomStudentRelationDao.getNoSendExamPlanRooms(examId.longValue(), null);
 
 		if(CollectionUtils.isEmpty(examRoomStudentWithOrgans)){
-			return BaseController.succeed("所有考场都已发送考试安排");
+			return BaseController.succeedData("所有考场都已发送考试安排");
 		}
 
 		Set<Integer> locationIds = examRoomStudentWithOrgans.stream().filter(e -> Objects.nonNull(e.getExamLocationId())).map(ExamRoomStudentRelation::getExamLocationId).collect(Collectors.toSet());