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";
|
}
|
|
}
|