From 2d73e7fbab48b729504704114f5c5272d9dad60d Mon Sep 17 00:00:00 2001
From: CZT <czt18638530771@163.com>
Date: 星期五, 15 十二月 2023 17:24:42 +0800
Subject: [PATCH] 修复粮情数据转换
---
src/main/java/com/fzzy/push/nx2023/NX2023ApiRemoteService.java | 37 +++++++++++++++++++++++++++++++++++++
1 files changed, 37 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/fzzy/push/nx2023/NX2023ApiRemoteService.java b/src/main/java/com/fzzy/push/nx2023/NX2023ApiRemoteService.java
index 27845ad..bec128a 100644
--- a/src/main/java/com/fzzy/push/nx2023/NX2023ApiRemoteService.java
+++ b/src/main/java/com/fzzy/push/nx2023/NX2023ApiRemoteService.java
@@ -214,16 +214,46 @@
BeanUtils.copyProperties(data, api1112);
return api1112;
}
+ if (NX2023Constant.NX_2023_API_CODE_1113.equals(inteId)) {
+ Nx2023Api1113 api1113 = new Nx2023Api1113();
+ BeanUtils.copyProperties(data, api1113);
+ return api1113;
+ }
if (NX2023Constant.NX_2023_API_CODE_1201.equals(inteId)) {
Nx2023Api1201 api1201 = new Nx2023Api1201();
BeanUtils.copyProperties(data, api1201);
return api1201;
+ }
+ if (NX2023Constant.NX_2023_API_CODE_1211.equals(inteId)) {
+ Nx2023Api1211 api1211 = new Nx2023Api1211();
+ BeanUtils.copyProperties(data, api1211);
+ return api1211;
}
if (NX2023Constant.NX_2023_API_CODE_1205.equals(inteId)) {
Nx2023Api1205 api1205 = new Nx2023Api1205();
BeanUtils.copyProperties(data, api1205);
api1205.setSzlx("09");
return api1205;
+ }
+ if (NX2023Constant.NX_2023_API_CODE_1306.equals(inteId)) {
+ Nx2023Api1306 api1306 = new Nx2023Api1306();
+ BeanUtils.copyProperties(data, api1306);
+ return api1306;
+ }
+ if (NX2023Constant.NX_2023_API_CODE_1307.equals(inteId)) {
+ Nx2023Api1307 api1307 = new Nx2023Api1307();
+ BeanUtils.copyProperties(data, api1307);
+ return api1307;
+ }
+ if (NX2023Constant.NX_2023_API_CODE_1308.equals(inteId)) {
+ Nx2023Api1308 api1308 = new Nx2023Api1308();
+ BeanUtils.copyProperties(data, api1308);
+ return api1308;
+ }
+ if (NX2023Constant.NX_2023_API_CODE_1403.equals(inteId)) {
+ Nx2023Api1403 api1403 = new Nx2023Api1403();
+ BeanUtils.copyProperties(data, api1403);
+ return api1403;
}
return data;
}
@@ -508,4 +538,11 @@
}
return object;
}
+
+ @Override
+ public ResponseDto pullData(ApiParam param, ApiConfs conf) {
+ //璇ュ崗璁棤姝ゅ疄鐜�
+ return null;
+ }
+
}
\ No newline at end of file
--
Gitblit v1.9.3