教育训练处考试制证系统后端
“djh”
2025-02-25 70dcf4e610a0ec5fd6ca2c3daf9edf4957b30529
exam-system/src/main/java/com/gkhy/exam/institutionalaccess/controller/TripartiteInterfaceController.java
@@ -31,8 +31,8 @@
    @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
@@ -78,6 +78,18 @@
    }
    /**
     * 学时证书推送
     * @param jsonObject
     * @return
     */
    @RepeatedClick
    @PostMapping("/certs")
    public AjaxResult receiveCerts(@RequestBody JSONObject jsonObject) throws Exception {
        return tripartiteInterfaceService.receiveCerts(jsonObject);
    }
    /**
     * 题库组卷
     * @param args
     */