guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package cn.stylefeng.guns.modular.business.service;
 
import cn.stylefeng.guns.modular.business.entity.CourseChapter;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.List;
 
/**
 * <p>
 * 章节管理 服务类
 * </p>
 *
 * @author goupan
 * @since 2024-01-01
 */
public interface ICourseChapterService extends IService<CourseChapter> {
 
 
    /**
     * 根据课程id获取章节层次信息
     * @param courseId 课程id
     * @return
     */
    List<CourseChapter> getAllByCourseId(Long courseId);
 
}