19 lines
392 B
Java
19 lines
392 B
Java
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 {
|
|
|
|
}
|