删除测试类

This commit is contained in:
root
2021-06-15 17:13:39 +08:00
parent c0a1708f47
commit 790ad9e525
@@ -1,18 +0,0 @@
package com.adc.da.slrs.zxy;
import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Api(tags = "赵肖云测试")
@RequestMapping("/zxy")
@RestController
public class ZxyController {
@GetMapping("/test")
public String a(){
return "她和我有啥关系";
}
}