From bf4a3fba3c5554d5b8f5c8bb324aaa29f3370de8 Mon Sep 17 00:00:00 2001 From: yinqiang Date: Mon, 28 Aug 2023 18:09:44 +0800 Subject: [PATCH] =?UTF-8?q?perf-=E4=BC=98=E5=8C=96=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gdsi/Helper/Http.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Gdsi/Helper/Http.cs b/Gdsi/Helper/Http.cs index d3ab8f8..6c53744 100644 --- a/Gdsi/Helper/Http.cs +++ b/Gdsi/Helper/Http.cs @@ -63,7 +63,9 @@ namespace Gdsi.Helper { HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.Method = "POST"; - httpWebRequest.ContentType = "application/json;charset=UTF-8"; + //医保中间件23分钟,his中间件24分钟,客户端25分钟 + httpWebRequest.Timeout = 1380000; + httpWebRequest.ContentType = "application/json;charset=UTF-8"; if (dicHeader == null) { dicHeader = new Dictionary();