From 48366b2749d6c2a93cc5b461672d93c29562eb6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AF=95=E5=BD=A6=E5=85=B5?= Date: Fri, 26 Dec 2025 14:10:14 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=AF=B7=E6=B1=82=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ct/src/main/java/com/ruoyi/ct/service/impl/CTServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/src/main/java/com/ruoyi/ct/service/impl/CTServiceImpl.java b/ct/src/main/java/com/ruoyi/ct/service/impl/CTServiceImpl.java index 59a2f7d..6017657 100644 --- a/ct/src/main/java/com/ruoyi/ct/service/impl/CTServiceImpl.java +++ b/ct/src/main/java/com/ruoyi/ct/service/impl/CTServiceImpl.java @@ -316,7 +316,7 @@ public class CTServiceImpl implements CTService { log.error(sn+" 请求地址:"+saveOrderUrl); HttpResponse httpResponse = HttpRequest.post(saveOrderUrl) .header("token", token).header("Content-Type", "application/json") - .body(body.toString()) + .body(JSONUtil.toJsonStr(body)) .execute(); boolean checkOK = false;