wangwei 6 سال پیش
والد
کامیت
5cc35aafde

+ 3 - 0
examcloud-core-basic-service/src/main/java/cn/com/qmth/examcloud/core/basic/service/impl/StudentServiceImpl.java

@@ -152,6 +152,9 @@ public class StudentServiceImpl implements StudentService {
 			student.setStudentCode(studentCode);
 		}
 		if (null != studentInfo.getName()) {
+			if (StringUtils.isBlank(studentInfo.getName())) {
+				throw new StatusException("B-160006", "姓名不能为空");
+			}
 			student.setName(studentInfo.getName());
 		}
 		if (null != studentInfo.getPhotoPath()) {