21 lines
465 B
Java
21 lines
465 B
Java
|
package cn.bunny.services.controller;
|
||
|
|
||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||
|
import org.springframework.web.bind.annotation.RestController;
|
||
|
|
||
|
/**
|
||
|
* <p>
|
||
|
* 系统菜单表 前端控制器
|
||
|
* </p>
|
||
|
*
|
||
|
* @author Bunny
|
||
|
* @since 2024-09-26
|
||
|
*/
|
||
|
@Tag(name = "系统路由", description = "系统路由相关接口")
|
||
|
@RestController
|
||
|
@RequestMapping("admin/router")
|
||
|
public class RouterController {
|
||
|
|
||
|
}
|