package com.teaching.backend.controller.chapter; import com.teaching.backend.service.chapter.IChapterService; import io.swagger.annotations.Api; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.List; /** * * @author author * @since 2024-05-31 */ @Slf4j @Api(tags = "章节管理") @RestController @RequestMapping("/chapter") public class ChapterController { @Autowired private IChapterService chapterService; }