123456789101112131415161718 |
- package com.sf.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.stereotype.Controller;
- /**
- * <p>
- * 小说内容 前端控制器
- * </p>
- *
- * @author baomidou
- * @since 2024-05-25
- */
- @Controller
- @RequestMapping("/bookContent")
- public class BookContentController {
- }
|