Commit db1fcc5be16972786e72ac2ff723fa847ffb8a2d

Authored by 王富国
1 parent fb9da191
Exists in master

feat:增加金润对接钉钉审批接口

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
jinrun/audit/审批接口.md
@@ -196,7 +196,7 @@ public static void main(String[] args) { @@ -196,7 +196,7 @@ public static void main(String[] args) {
196 " }\n" + 196 " }\n" +
197 " ]\n" + 197 " ]\n" +
198 "}"; 198 "}";
199 - HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/send", AesUtils.aesEncrypt(data, aesSecret)); 199 + HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/send", AesUtils.encrypt(data, aesSecret));
200 } 200 }
201 ``` 201 ```
202 202
@@ -297,7 +297,7 @@ public static void main(String[] args) { @@ -297,7 +297,7 @@ public static void main(String[] args) {
297 " \"remark\": \"付款金额错误, 撤销重新提交\",\n" + 297 " \"remark\": \"付款金额错误, 撤销重新提交\",\n" +
298 " \"username\": \"001073\"\n" + 298 " \"username\": \"001073\"\n" +
299 "}"; 299 "}";
300 - HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/cancel", AesUtils.aesEncrypt(data, aesSecret)); 300 + HttpResponseData httpResponseData = ZYClient.doPost(Constants.TEST_HOST + "/tms-service-api/audit/cancel", AesUtils.encrypt(data, aesSecret));
301 } 301 }
302 ``` 302 ```
303 303