You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
679 B
28 lines
679 B
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; |
|
|
|
}
|
|
|