| | |
| | | @Validated |
| | | @RequiredArgsConstructor |
| | | @Api(value = "会议表", tags = "会议表管理") |
| | | @RestController |
| | | @RestController("StudentMeetController") |
| | | @RequestMapping("api/student/meet") |
| | | public class MeetController { |
| | | |
| | |
| | | @GetMapping("/page") |
| | | @ApiOperation(value = "分页", notes = "分页") |
| | | public Result page(MeetQuery query) { |
| | | return meetService.page(query); |
| | | return meetService.studentPage(query); |
| | | } |
| | | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | @ApiOperation(value = "学生上课", notes = "学生上课") |
| | | public Result detail(@PathVariable("id") Integer id) { |
| | | return meetService.detail(id); |
| | | } |