From 701f0bd7adccb1c630a3745a53405fafb23b939e Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期四, 18 四月 2024 21:31:27 +0800
Subject: [PATCH] 优化调整船运出入库图片同步问题
---
src/main/java/com/fzzy/push/nx2023/NX2023HttpClientUtil.java | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/main/java/com/fzzy/push/nx2023/NX2023HttpClientUtil.java b/src/main/java/com/fzzy/push/nx2023/NX2023HttpClientUtil.java
index 33ca5af..8b9ffc0 100644
--- a/src/main/java/com/fzzy/push/nx2023/NX2023HttpClientUtil.java
+++ b/src/main/java/com/fzzy/push/nx2023/NX2023HttpClientUtil.java
@@ -2,7 +2,7 @@
import com.alibaba.fastjson.JSON;
import com.fzzy.api.entity.ApiConfs;
-import com.fzzy.push.sh2023.dto.SH2023RespDto;
+import com.fzzy.push.nx2023.dto.Nx2023RespDto;
import lombok.extern.slf4j.Slf4j;
import java.io.BufferedReader;
import java.io.InputStreamReader;
@@ -25,14 +25,14 @@
* @throws Exception
*/
@SuppressWarnings("resource")
- public static SH2023RespDto postPushData(String url, String reqData , ApiConfs apiConfs) throws Exception {
+ public static Nx2023RespDto postPushData(String url, String reqData , ApiConfs apiConfs) throws Exception {
log.info("---------鎺ュ彛璇锋眰鍦板潃锛�" +url+ "----------鍙傛暟锛�" + reqData +"---------");
BufferedReader in = null;
URL urls = new URL(url);
HttpURLConnection connection = null;
OutputStream outputStream = null;
String rs = "";
- SH2023RespDto responseDto;
+ Nx2023RespDto responseDto;
try {
connection = (HttpURLConnection) urls.openConnection();
@@ -66,11 +66,11 @@
System.out.println("鍙戠敓寮傚父");
log.error(e.getMessage(),e);
rs = null;
- return new SH2023RespDto(99,e.getMessage());
+ return new Nx2023RespDto(99,e.getMessage());
}
log.info("---------鎺ュ彛杩斿洖锛�" + rs +"---------");
- responseDto = JSON.parseObject(rs,SH2023RespDto.class);
- if(responseDto == null ) return new SH2023RespDto(99,"鎺ュ彛璇锋眰鍙戠敓鏈煡閿欒");
+ responseDto = JSON.parseObject(rs,Nx2023RespDto.class);
+ if(responseDto == null ) return new Nx2023RespDto(99,"鎺ュ彛璇锋眰鍙戠敓鏈煡閿欒");
return responseDto;
} finally {
try {
--
Gitblit v1.9.3