From 70cc3245c4df6566e06df029a03b85d3eedaf94e Mon Sep 17 00:00:00 2001 From: daihh Date: Mon, 19 Dec 2022 20:29:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/xboe/module/scorm/IScormStudyCallback.java | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/modules/boe-module-scorm/src/main/java/com/xboe/module/scorm/IScormStudyCallback.java b/modules/boe-module-scorm/src/main/java/com/xboe/module/scorm/IScormStudyCallback.java index 730c292a..7e46d276 100644 --- a/modules/boe-module-scorm/src/main/java/com/xboe/module/scorm/IScormStudyCallback.java +++ b/modules/boe-module-scorm/src/main/java/com/xboe/module/scorm/IScormStudyCallback.java @@ -7,12 +7,7 @@ package com.xboe.module.scorm; */ public interface IScormStudyCallback { - /** - * 学习完成回调 - * @param studyId - * @param studyId - * @param studyId - */ + /** * 学习完成回调 * @param lmsId 初始化时传入的学习lmsId @@ -23,5 +18,5 @@ public interface IScormStudyCallback { * @param scormId scorm课程的id * @param scoId sco的id */ - void scoFinishCallback(String lmsId,String courseId,String contentId,String studentId,String studentName,String scormId,String scoId); + void finishCallback(String lmsId,String courseId,String contentId,String studentId,String studentName,String scormId,String scoId); }