浏览代码

新增版本支持

chenweida 7 年之前
父节点
当前提交
f86593a927
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      web-gateway/src/main/java/com/yihu/jw/controller/PatientController.java

+ 2 - 2
web-gateway/src/main/java/com/yihu/jw/controller/PatientController.java

@ -66,7 +66,7 @@ public class PatientController {
    public String hello1(HttpServletRequest request){
        System.out.println("haha1..........");
        return "hello";
        return "hello1";
    }
    @GetMapping("/hello")
@ -74,6 +74,6 @@ public class PatientController {
    @ResponseBody
    public String hello2(HttpServletRequest request){
        System.out.println("haha2.........");
        return "hello";
        return "hello2";
    }
}