mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-08 02:16:49 +08:00
提交
This commit is contained in:
@@ -4,7 +4,6 @@ import com.xboe.module.scorm.cam.model.Manifest;
|
||||
|
||||
/**
|
||||
* manifest.xml内容的保存
|
||||
* @author seastar
|
||||
*
|
||||
*/
|
||||
public interface IManifestInfoSave{
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
package com.xboe.module.scorm;
|
||||
|
||||
import com.xboe.module.scorm.data.ScormFile;
|
||||
|
||||
/**
|
||||
* SCORM课件文件的相关处理
|
||||
*
|
||||
*/
|
||||
public interface IScormFileHandle {
|
||||
|
||||
/**
|
||||
* 根据传入的id获到scorm文件的目录信息
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
ScormFile getById(String id);
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.xboe.module.scorm.data;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ScormFile {
|
||||
|
||||
/**
|
||||
* 文件的id
|
||||
*/
|
||||
private String id;
|
||||
|
||||
/**
|
||||
* 文件所在的目录
|
||||
*/
|
||||
private String dirPath;
|
||||
|
||||
/**
|
||||
* zip文件名
|
||||
*/
|
||||
private String zipName;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user