mirror of
https://gitcode.com/ageerle/ruoyi-ai.git
synced 2026-04-09 09:47:32 +00:00
29 lines
701 B
Java
29 lines
701 B
Java
package org.ruoyi.controller;
|
|
|
|
import cn.dev33.satoken.annotation.SaIgnore;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.ruoyi.common.core.utils.SpringUtils;
|
|
import org.ruoyi.common.core.utils.StringUtils;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* 首页
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
@SaIgnore
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
public class IndexController {
|
|
|
|
/**
|
|
* 访问首页,提示语
|
|
*/
|
|
@GetMapping("/")
|
|
public String index() {
|
|
return StringUtils.format("欢迎使用{}后台管理框架,请通过前端地址访问。", SpringUtils.getApplicationName());
|
|
}
|
|
|
|
}
|