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, ""));