refactor: 修改后端欢迎语为盘古后台管理系统

This commit is contained in:
神码-方晓辉 2026-02-03 22:36:52 +08:00
parent 1d30e82a2d
commit 6027a8c5df
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ public class IndexController {
*/ */
@GetMapping("/") @GetMapping("/")
public String index() { public String index() {
return StringUtils.format("欢迎使用{}后台管理框架,请通过前端地址访问。", SpringUtils.getApplicationName()); return "欢迎使用盘古后台管理系统,请通过前端地址访问。";
} }
} }