소스 검색

记录删除日志

夏文涛 1 년 전
부모
커밋
7586c62bce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/template/controller/WelcomeStudentController.java

+ 1 - 1
src/main/java/com/template/controller/WelcomeStudentController.java

@@ -790,7 +790,7 @@ public class WelcomeStudentController implements WelcomeStudentControllerAPI {
     @Override
     @Transactional(rollbackFor = {Exception.class})
     public CommonResult deleteStudentInfo(int id) throws Exception {
-
+        System.out.println("删除了学生信息:"+id);
         WelcomeStudent ws = welcomeStudentService.getManageById(id);
         if (ws == null) {
             return CommonResult.fail("学生信息已失效,无法进行删除操作!");