学籍异动学生信息修改

This commit is contained in:
2025-08-04 17:38:36 +08:00
parent cedfd4096a
commit 55b3727ead
3 changed files with 6 additions and 0 deletions

View File

@@ -44,6 +44,9 @@ public class DisqualificationStatusListener implements TaskListener {
student.setUpdateTime(DateUtils.getNowDate());
disciplinaryMapper.updateStudentStatus(student);
disciplinaryMapper.updateStudentStatus(student);
// todo 辅导员给予退学1、宿舍
//2、综测
//3、班级
}

View File

@@ -41,6 +41,8 @@ public class DropOutSchoolStatusListener implements TaskListener {
student.setUpdateBy(SecurityUtils.getUsername());
student.setUpdateTime(DateUtils.getNowDate());
disciplinaryMapper.updateStudentStatus(student);
// todo 学生自动退学:
}else{
throw new RuntimeException("该退学申请不存在");
}

View File

@@ -39,6 +39,7 @@ public class QuitSchoolStatusListener implements TaskListener {
student.setUpdateBy(SecurityUtils.getUsername());
student.setUpdateTime(DateUtils.getNowDate());
disciplinaryMapper.updateStudentStatus(student);
// todo 学生自动休学:
} else {
throw new RuntimeException("该休学申请不存在");
}