添加注册接口对已注册学号的检查
This commit is contained in:
parent
d59880bb47
commit
3dc1c08ac3
@ -67,7 +67,12 @@ public class RegisterController {
|
|||||||
|
|
||||||
// 检查用户的基本信息是否录入系统
|
// 检查用户的基本信息是否录入系统
|
||||||
if(!baseInformationService.checkStudentInfo(student_id))
|
if(!baseInformationService.checkStudentInfo(student_id))
|
||||||
|
return quickJSONRespond.getRespond500("StudentID Base Information Not Found");
|
||||||
|
|
||||||
|
// 检查学号是否已被注册
|
||||||
|
if(userService.checkIfUserExists(userService.getUsernameByStudentId(student_id)).getKey()){
|
||||||
return quickJSONRespond.getRespond500("StudentID Already Used");
|
return quickJSONRespond.getRespond500("StudentID Already Used");
|
||||||
|
}
|
||||||
|
|
||||||
// 查找对应的基本信息
|
// 查找对应的基本信息
|
||||||
BaseStudentInfo studentInfo = baseInformationService.findStudentInfoByStudentId(student_id);
|
BaseStudentInfo studentInfo = baseInformationService.findStudentInfoByStudentId(student_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user