办学质量监测教学评价系统
ageerle
2025-05-08 980df20752f031460301cc1697a22757239a1ac9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.ruoyi.controller;
 
import cn.dev33.satoken.annotation.SaIgnore;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * 首页
 *
 * @author Lion Li
 */
@SaIgnore
@RestController
public class IndexController {
 
    /**
     * 访问首页,提示语
     */
    @GetMapping("/")
    public String index() {
        return "RuoYi AI启动成功!";
    }
 
 
 
}