shiyunteng
7 天以前 0ad13cb4bf387d4f2db2d62540ebb73a376087f5
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
package com.by4cloud.platformx.device.controller;
 
import com.by4cloud.platformx.common.security.annotation.Inner;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName TestController.java
 * @Description TODO
 * @createTime 2025年03月04日 15:43:00
 */
@RequestMapping("test")
@RestController
public class TestController {
 
 
    @Inner(value = false)
    @RequestMapping("/ceshi")
    public String getInfo(){
        return "123";
    }
 
}