派生自 projectDept/qhighschool

EricsHu
2023-11-25 79ab2cbd31c022916a8e696903d5eb34b70aa403
src/main/java/com/qxueyou/scc/teach/subject/service/ISubjectService.java
@@ -1,6 +1,7 @@
package com.qxueyou.scc.teach.subject.service;
import java.lang.reflect.InvocationTargetException;
import java.util.Date;
import java.util.List;
import java.util.Map;
@@ -24,7 +25,7 @@
    *            内容文件id
    * @return
    */
   Result add(String subjectName, String coverPageFileId, String contentFileId,int type);
   Result add(String subjectName, String coverPageFileId, String contentFileId, int type, Date startTime, Date endTime);
   /**
    * 修改课程
@@ -387,4 +388,11 @@
    * @return
    */
   public long getLectureCount(String subjectId);
   /**
    * 获取课程名称
    * @param subjectId
    * @return
    */
   String findSubjectName(String subjectId);
}