1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

较多改动,暂存

This commit is contained in:
2023-04-04 01:06:22 +08:00
parent ac885fb06b
commit a68307b9f9
44 changed files with 2467 additions and 649 deletions

View File

@@ -4,6 +4,7 @@ package com.cxyxiaomo.epp.test.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@@ -22,4 +23,9 @@ public class TestController {
public String hi(@PathVariable("id") String id) {
return id;
}
@PostMapping("/test")
public String post(){
return "POST OK";
}
}