【数据资产】
数据港接口调用
Showing
2 changed files
with
7 additions
and
6 deletions
| ... | @@ -478,10 +478,13 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService | ... | @@ -478,10 +478,13 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService |
| 478 | // 下架主平台数据 | 478 | // 下架主平台数据 |
| 479 | if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(mfDemand.getCrossPlatformApproveState())) { | 479 | if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(mfDemand.getCrossPlatformApproveState())) { |
| 480 | JSONObject jsonObject = new JSONObject(); | 480 | JSONObject jsonObject = new JSONObject(); |
| 481 | jsonObject.put("zqSystemCode", SysFuncCode); | 481 | jsonObject.put("bizCode", SysFuncCode); |
| 482 | jsonObject.put("guid", vo.getGuid()); | 482 | jsonObject.put("operation", "SJ"); |
| 483 | jsonObject.put("listingStatus", vo.getListingStatus()); | 483 | JSONObject data = new JSONObject(); |
| 484 | invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getGroundingPickUrl()); | 484 | data.put("guid", vo.getGuid()); |
| 485 | data.put("listingStatus", vo.getListingStatus()); | ||
| 486 | jsonObject.put("zqData", data); | ||
| 487 | invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getReceiveUrl()); | ||
| 485 | } | 488 | } |
| 486 | return Boolean.TRUE; | 489 | return Boolean.TRUE; |
| 487 | } | 490 | } | ... | ... |
| ... | @@ -23,8 +23,6 @@ public class ZQConfig { | ... | @@ -23,8 +23,6 @@ public class ZQConfig { |
| 23 | 23 | ||
| 24 | private String receiveUrl = ""; | 24 | private String receiveUrl = ""; |
| 25 | 25 | ||
| 26 | private String groundingPickUrl = ""; | ||
| 27 | |||
| 28 | private Boolean isMain = false; | 26 | private Boolean isMain = false; |
| 29 | 27 | ||
| 30 | /** | 28 | /** | ... | ... |
-
Please register or sign in to post a comment