Merge branch 'dev/dev_xp' into dev/dev

This commit is contained in:
2025-06-10 17:53:03 +08:00
4 changed files with 130 additions and 19 deletions

View File

@@ -74,7 +74,7 @@ public class SendRequestUtil {
try (HttpResponse execute = HttpRequest.post(url)
.header("Content-Type", "application/json") // 必须设置 Content-Type
.body(requestBodyStr) // Hutool 会自动处理 JSON 序列化
.timeout(120000) // 设置超时(毫秒)
.timeout(180000) // 设置超时(毫秒)
.execute()) {
status = execute.getStatus();