feat:引入常量方法

This commit is contained in:
lbw
2025-12-09 18:42:50 +08:00
parent 46fc80223b
commit 7ef76d2386
19 changed files with 832 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
package com.yinlihupo.enlish.service.deoms.web;
import com.yinlihupo.framework.common.response.Response;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@GetMapping("/test")
public Response<String> test() {
return Response.success("Hello, 犬小哈专栏");
}
}