puzhibing
2023-07-04 75b60332f174363cfe67f61dea87832be708ac15
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
27
28
29
30
31
32
package com.dsh.course.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.course.entity.TCoursePackage;
import com.dsh.course.feignclient.model.CourseOfStoreVo;
import com.dsh.course.model.CoursePackageList;
import com.dsh.course.model.CoursePackageListVo;
 
import java.util.List;
 
/**
 * <p>
 * 课包 服务类
 * </p>
 *
 * @author administrator
 * @since 2023-06-14
 */
public interface TCoursePackageService extends IService<TCoursePackage> {
 
    List<CourseOfStoreVo> queryStoreOfCourse();
 
 
 
    /**
     * 获取课程列表
     * @param coursePackageList
     * @return
     * @throws Exception
     */
    List<CoursePackageListVo> queryCourseList(Integer uid, CoursePackageList coursePackageList) throws Exception;
}