package com.by4cloud.platformx.business.controller; import com.by4cloud.platformx.common.core.util.R; import com.by4cloud.platformx.common.security.annotation.Inner; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/test") public class TestController { @Inner(value = false) @GetMapping("/test") public R test() { return R.ok(); } }