update[litemall-os-api,litemall-wx-api, litemall-admin-api]: 三个后台服务的IndexController显示不同的hello内容。

This commit is contained in:
Junling Bu
2018-04-21 18:44:04 +08:00
parent f831bd8547
commit 1f5ed1ba80
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ public class IndexController {
@RequestMapping("/index")
public Object index(){
return ResponseUtil.ok("hello world");
return ResponseUtil.ok("hello world, this is admin service");
}

View File

@@ -13,7 +13,7 @@ public class OsIndexController {
@RequestMapping("/index")
public Object index(){
return ResponseUtil.ok("hello world");
return ResponseUtil.ok("hello world, this is os service");
}
}

View File

@@ -13,7 +13,7 @@ public class WxIndexController {
@RequestMapping("/index")
public Object index(){
return ResponseUtil.ok("hello world");
return ResponseUtil.ok("hello world, this is wx service");
}
}