|
@@ -345,7 +345,7 @@ public class DataUploadService {
|
|
|
Student studentNew = null;
|
|
|
Student student = studentRepo.findByWorkIdAndExamNumberAndTest(workId, dto.getExamNumber(), String.valueOf(TrialEnum.DEFAULT.getId()));
|
|
|
if (student == null) {
|
|
|
- throw new Exception("没有学生" + student.getName() + "信息");
|
|
|
+ throw new Exception("没有学生" + dto.getName() + "信息");
|
|
|
}
|
|
|
if (!student.getUploadStatus().contains(subject + ":1")) {
|
|
|
throw new Exception("学生" + student.getName() + "未上传完试卷");
|