初始化

master
chaiyapeng 2024-08-08 19:52:42 +08:00
parent 24eb71694c
commit d69fe2e2cc
1 changed files with 2 additions and 2 deletions

View File

@ -19,11 +19,11 @@ public class TestController {
@PostMapping @PostMapping
public Result<String> post(){ public Result<String> post(){
return Result.success("厕所Post成功"); return Result.success("测试Post成功");
} }
@GetMapping @GetMapping
public Result<String> get(){ public Result<String> get(){
return Result.success("厕所Get成功"); return Result.success("测试Get成功");
} }
} }