Commit 1f5ed1ba authored by Junling Bu's avatar Junling Bu
Browse files

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

parent f831bd85
......@@ -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");
}
......
......@@ -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");
}
}
......@@ -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");
}
}
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment