You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
806 B
29 lines
806 B
package com.ruoyi.web.controller.system; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
import org.springframework.web.bind.annotation.RestController; |
|
import com.ruoyi.common.config.RuoYiConfig; |
|
import com.ruoyi.common.utils.StringUtils; |
|
|
|
/** |
|
* 首页 |
|
* |
|
* @author ruoyi |
|
*/ |
|
@RestController |
|
public class SysIndexController |
|
{ |
|
/** 系统基础配置 */ |
|
@Autowired |
|
private RuoYiConfig ruoyiConfig; |
|
|
|
/** |
|
* 访问首页,提示语 |
|
*/ |
|
@RequestMapping("/") |
|
public String index() |
|
{ |
|
return StringUtils.format("欢迎使用{}后台管理框架,当前版本:v{},请通过前端地址访问。", ruoyiConfig.getName(), ruoyiConfig.getVersion()); |
|
} |
|
}
|
|
|