This commit is contained in:
2026-01-13 15:43:14 +08:00
commit 444515d18c
57 changed files with 2373 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.backend.webbackend.Service;
import com.backend.webbackend.domain.Course;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public interface courseService {
List<Course> getAllCourseInfo();
}