|
@@ -95,7 +95,7 @@ public class WebController {
|
|
|
return musicService.search(param);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "军歌列表")
|
|
|
+ @ApiOperation(value = "学生列表")
|
|
|
@PostMapping("studentList")
|
|
|
public Result studentList(@RequestBody SortPageDto param) {
|
|
|
param.setDisplay(1);
|
|
@@ -103,4 +103,12 @@ public class WebController {
|
|
|
return studentService.search(param);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "领导列表")
|
|
|
+ @PostMapping("leaderList")
|
|
|
+ public Result leaderList(@RequestBody SortPageDto param) {
|
|
|
+ param.setDisplay(1);
|
|
|
+ param.setSortType(1);
|
|
|
+ return leaderService.search(param);
|
|
|
+ }
|
|
|
+
|
|
|
}
|