From 9aecf0b6a214ce206ec09ea85630addf7e96f5c8 Mon Sep 17 00:00:00 2001 From: lqyan Date: Thu, 20 Feb 2025 18:02:44 +0800 Subject: [PATCH] =?UTF-8?q?doc(=E6=89=A9=E5=B1=95=E6=96=B9=E5=BC=8F):=20?= =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=89=A9=E5=B1=95=E6=96=B9=E5=BC=8F=E7=9A=84?= =?UTF-8?q?=E6=96=87=E6=A1=A3=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f012537..7625b4d 100644 --- a/README.md +++ b/README.md @@ -316,7 +316,7 @@ public class JHDemoApiExecution extends JHApiExecution { public XxxDTO getXXXX(String username, String demoParams) { - return get("/demo/path", username, new TypeReference>() { + return execution.get("/demo/path", username, new TypeReference>() { }); } } @@ -338,7 +338,7 @@ public class JHDemoApiExecution extends JHApiExecution { public XxxDTO getXXXX(String username, String demoParams) { - return get("/demo/path", username, new TypeReference>() { + return execution.get("/demo/path", username, new TypeReference>() { }); } } @@ -362,7 +362,7 @@ public class JHDemoApiExecution extends JHApiExecution { public XxxDTO getXXXX(String username, String demoParams) { - return get("/demo/path", username, new TypeReference>() { + return execution.get("/demo/path", username, new TypeReference>() { }); } }