| | |
| | | public Result getMarkPaperInfo(@PathVariable("examId") Integer examId, @PathVariable("userId") Integer userId) { |
| | | return examService.getMarkPaperInfo(examId, userId); |
| | | } |
| | | |
| | | @PostMapping("/mark/paper") |
| | | @ApiOperation(value = "提交批改", notes = "提交批改") |
| | | public Result submitMarkPaper(@RequestBody ExamPaperMarkVO examPaperMark) { |
| | | return examService.submitMarkPaper(examPaperMark); |
| | | public Result submitMarkPaper(@RequestBody ExamPaperMarkVO form) { |
| | | return examService.submitMarkPaper(form); |
| | | } |
| | | |
| | | @GetMapping("/monitor/list") |