Alanosy / online-exam-system-backend

在线考试系统,springboot+vue
https://alan.org.cn
MIT License
491 stars 37 forks source link

获取所有班级列表 这个作用是什么? #14

Open jing001z opened 1 week ago

jing001z commented 1 week ago

// @GetMapping("/list") // @PreAuthorize("hasAnyAuthority('role_teacher','role_admin')") public Result<List> getAllGrade(){ return gradeService.getAllGrade(); } 这个作用是什么?我在idea中把它注释了,前端用户管理页面这个请求 http://localhost:9527/api/grades/list失败,页面数据也是正常显示

Snipaste_2024-11-21_18-24-52
Alanosy commented 6 days ago

// @GetMapping("/list")

// @PreAuthorize("hasAnyAuthority('role_teacher','role_admin')")

public Result<List> getAllGrade(){

   return gradeService.getAllGrade();

}

这个作用是什么?我在idea中把它注释了,前端用户管理页面这个请求

http://localhost:9527/api/grades/list失败,页面数据也是正常显示

Snipaste_2024-11-21_18-24-52

这个接口是给上面筛选条件的班级组件使用