| | |
| | | */ |
| | | @PostMapping("/getExamDetail") |
| | | public R getExamDetail(@RequestBody ExamPaperVO examPaper) { |
| | | System.out.println("examPaper = " + examPaper); |
| | | // System.out.println("examPaper = " + examPaper); |
| | | return R.data(examPaperService.getExamDetail(examPaper)); |
| | | } |
| | | |
| | |
| | | * |
| | | * @param examPaper 报名培训申请信息对象 |
| | | */ |
| | | @PostMapping("/update-audit") |
| | | @PostMapping(value = "/update-audit",produces = "application/json;charset=UTF-8") |
| | | public R updateAudit(@RequestBody ExamPaper examPaper) { |
| | | //查询之前的审核状态,如果审核状态没有发生改变,则不会去修改审核信息 |
| | | ExamPaper paper = examPaperService.getById(examPaper.getId()); |