21 lines
463 B
Java
21 lines
463 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 = "菜单Icon", description = "菜单Icon相关接口")
|
||
|
@RestController
|
||
|
@RequestMapping("/menuIcon")
|
||
|
public class MenuIconController {
|
||
|
|
||
|
}
|