feat: 新增文章、标签服务及接口.

This commit is contained in:
2025-08-09 00:47:53 +08:00
parent 0b6ee12e9e
commit a7de8cfdb3
19 changed files with 432 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
package com.serliunx.blog.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 文章实体表 前端控制器
* </p>
*
* @author <a href="mailto:root@serliunx.com">SerLiunx</a>
* @since 2025-08-09
*/
@RestController
@RequestMapping("/pb-article")
public class PbArticleController {
}