CourseService.java 386 B

123456789101112131415161718192021
  1. package com.zhentao.system.service;
  2. import com.zhentao.system.domain.Course;
  3. import java.util.List;
  4. /**
  5. * @author: wzy
  6. * @date: 2025/5/8 17:04
  7. */
  8. public interface CourseService {
  9. /**
  10. * 根据条件分页查询课程列表
  11. * @param course
  12. * @return
  13. */
  14. List<Course> selectCourseList(Course course);
  15. List<Course> findById(Integer courseCategory);
  16. }