2026-01-13 15:43:14 +08:00
|
|
|
package com.backend.webbackend.Service;
|
|
|
|
|
|
|
|
|
|
import com.backend.webbackend.domain.Course;
|
2026-01-13 16:10:27 +08:00
|
|
|
import com.backend.webbackend.domain.TrainingResource;
|
2026-01-13 15:43:14 +08:00
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Service
|
|
|
|
|
public interface courseService {
|
|
|
|
|
List<Course> getAllCourseInfo();
|
2026-01-13 16:10:27 +08:00
|
|
|
List<TrainingResource> getCourseResources();
|
2026-01-13 15:43:14 +08:00
|
|
|
}
|