1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.springblade.auth.endpoint;
|
| import org.springblade.core.tenant.annotation.NonDS;
| import org.springblade.core.tool.api.R;
| import org.springframework.web.bind.annotation.GetMapping;
| import org.springframework.web.bind.annotation.RequestMapping;
| import org.springframework.web.bind.annotation.RestController;
|
| @NonDS
| @RestController
| @RequestMapping("/arsn")
| public class Test {
|
| @GetMapping("/hello")
| public R test(){
| return R.data("hello");
| }
| }
|
|