From 0784402f4f7ef574ebb1ee1dfef91d71b9caa25a Mon Sep 17 00:00:00 2001 From: wangfuguo Date: Tue, 21 Oct 2025 08:56:26 +0800 Subject: [PATCH] feat:增加金润对接钉钉审批接口 --- jinrun/audit/审批接口.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jinrun/audit/审批接口.md b/jinrun/audit/审批接口.md index 1fd58d4..407349b 100644 --- a/jinrun/audit/审批接口.md +++ b/jinrun/audit/审批接口.md @@ -167,7 +167,7 @@ public static void main(String[] args) { String appKey = "bd95591ce63f4a78a54658c2d8ad5ff6"; String appSecret = "734a18117f614e60859efb8eea27c680"; String aesSecret = "wJ3472SLpkZLnjtwMArhRg=="; - ZYClient ZYClient = new ZYClient(appKey, appSecret); + ZYClient zyClient = new ZYClient(appKey, appSecret); String data = "{\n" + " \"code\": \"JR202510200000003\",\n" + " \"auditType\": \"JINRUN_VEHICLE_FEE_AUDIT\",\n" + @@ -196,7 +196,7 @@ public static void main(String[] args) { " }\n" + " ]\n" + "}"; - HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/send", AesUtils.encrypt(data, aesSecret)); + HttpResponseData httpResponseData = zyClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/send", AesUtils.encrypt(data, aesSecret)); } ``` @@ -289,7 +289,7 @@ public static void main(String[] args) { String appKey = "bd95591ce63f4a78a54658c2d8ad5ff6"; String appSecret = "734a18117f614e60859efb8eea27c680"; String aesSecret = "wJ3472SLpkZLnjtwMArhRg=="; - ZYClient ZYClient = new ZYClient(appKey, appSecret); + ZYClient zyClient = new ZYClient(appKey, appSecret); String data = "{\n" + " \"code\": \"JR202510200000002\",\n" + " \"auditId\": \"LgXYezIUQYC1WxnzMpZatA03781760922998\",\n" + @@ -297,7 +297,7 @@ public static void main(String[] args) { " \"remark\": \"付款金额错误, 撤销重新提交\",\n" + " \"username\": \"001073\"\n" + "}"; - HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/cancel", AesUtils.encrypt(data, aesSecret)); + HttpResponseData httpResponseData = zyClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/cancel", AesUtils.encrypt(data, aesSecret)); } ``` -- libgit2 0.21.0