Refactor project structure and update Maven configuration for CRM service

This commit is contained in:
bigtian 2025-06-26 16:03:06 +08:00
parent 7e6fa6c3eb
commit a5c50bcc3b

View File

@ -0,0 +1,11 @@
package net.rzdata.mcp.server.crm;
import org.springframework.web.bind.annotation.GetMapping;
@org.springframework.web.bind.annotation.RestController
public class RestController {
@GetMapping("/test")
public String test(){
return "请求进来了";
}
}