26 lines
501 B
Java
26 lines
501 B
Java
package com.ruoyi.system.controller;
|
|
|
|
import cn.dev33.satoken.annotation.SaIgnore;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
/**
|
|
* 首页
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
public class SysIndexController {
|
|
|
|
/**
|
|
* 访问首页,提示语
|
|
*/
|
|
@SaIgnore
|
|
@GetMapping("/")
|
|
public String index() {
|
|
return "ok";
|
|
}
|
|
}
|