From 2fa529f1e8fcc5462dd45798f984a753733f7451 Mon Sep 17 00:00:00 2001
From: Redkale <22250530@qq.com>
Date: Fri, 17 Mar 2017 20:10:56 +0800
Subject: [PATCH]
---
service.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/service.html b/service.html
index ca8ef6804..952402b09 100644
--- a/service.html
+++ b/service.html
@@ -607,7 +607,7 @@
}
@AuthIgnore
- @WebMapping(url = "/hello/find/", comment = "根据id删除Hello对象")
+ @WebMapping(url = "/hello/find/", comment = "根据id查找单个Hello对象")
@WebParam(name = "#", type = int.class, comment = "Hello对象id")
public void find(HttpRequest req, HttpResponse resp) throws IOException {
HelloService service = _servicemap == null ? _service : _servicemap.get(req.getHeader(Rest.REST_HEADER_RESOURCE_NAME, ""));
@@ -617,7 +617,7 @@
}
@AuthIgnore
- @WebMapping(url = "/hello/asyncfind/", comment = "根据id删除Hello对象")
+ @WebMapping(url = "/hello/asyncfind/", comment = "根据id查找单个Hello对象")
@WebParam(name = "#", type = int.class, comment = "Hello对象id")
public void asyncfind(HttpRequest req, HttpResponse resp) throws IOException {
HelloService service = _servicemap == null ? _service : _servicemap.get(req.getHeader(Rest.REST_HEADER_RESOURCE_NAME, ""));