diff --git a/yudao-module-home/yudao-module-home-biz/src/main/java/cn/iocoder/yudao/module/home/controller/app/AppDemoTestController.java b/yudao-module-home/yudao-module-home-biz/src/main/java/cn/iocoder/yudao/module/home/controller/app/AppDemoTestController.java deleted file mode 100644 index 632d7b7..0000000 --- a/yudao-module-home/yudao-module-home-biz/src/main/java/cn/iocoder/yudao/module/home/controller/app/AppDemoTestController.java +++ /dev/null @@ -1,22 +0,0 @@ -package cn.iocoder.yudao.module.home.controller.app; - -import cn.iocoder.yudao.framework.common.pojo.CommonResult; -import io.swagger.annotations.Api; -import io.swagger.annotations.ApiOperation; -import org.springframework.validation.annotation.Validated; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -@Api(tags = "用户 App - Test") -@RestController -@RequestMapping("/demo/test") -@Validated -public class AppDemoTestController { - - @GetMapping("/get") - @ApiOperation("获取 test 信息") - public CommonResult get() { - return CommonResult.success("true22"); - } -}