kongzy
2024-10-12 3402a6cdef63a87cf046a8bbfdc2898bb842c93f
exam-system/src/main/java/com/gkhy/exam/institutionalaccess/controller/TripartiteInterfaceController.java
@@ -31,7 +31,7 @@
    @PostMapping("/question/bank")
    @RepeatedClick
    public AjaxResult receiveQuestionBank(@RequestBody JSONObject jsonObject){
    public AjaxResult receiveQuestionBank(@RequestBody JSONObject jsonObject) throws Exception {
        return success(tripartiteInterfaceService.receiveQuestionBank(jsonObject));
    }
    @PostMapping("/course")
@@ -78,6 +78,18 @@
    }
    /**
     * 学时证书推送
     * @param jsonObject
     * @return
     */
    @RepeatedClick
    @PostMapping("/certs")
    public AjaxResult receiveCerts(@RequestBody JSONObject jsonObject) throws Exception {
        return tripartiteInterfaceService.receiveCerts(jsonObject);
    }
    /**
     * 题库组卷
     * @param args
     */