| | |
| | | |
| | | @PostMapping("/question/bank") |
| | | @RepeatedClick |
| | | public AjaxResult receiveQuestionBank(@RequestBody JSONObject jsonObject){ |
| | | return success(tripartiteInterfaceService.receiveQuestionBank(jsonObject)); |
| | | public AjaxResult receiveQuestionBank(@RequestBody JSONObject jsonObject) throws Exception { |
| | | return tripartiteInterfaceService.receiveQuestionBank(jsonObject); |
| | | } |
| | | @PostMapping("/course") |
| | | @RepeatedClick |
| | |
| | | } |
| | | |
| | | /** |
| | | * 学时证书推送 |
| | | * @param jsonObject |
| | | * @return |
| | | */ |
| | | @RepeatedClick |
| | | @PostMapping("/certs") |
| | | public AjaxResult receiveCerts(@RequestBody JSONObject jsonObject) throws Exception { |
| | | return tripartiteInterfaceService.receiveCerts(jsonObject); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 题库组卷 |
| | | * @param args |
| | | */ |