5e166b8e by xiaojie

【数据资产】

数据港接口调用
1 parent 04da2c8e
......@@ -478,10 +478,13 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
// 下架主平台数据
if (!zqConfig.getIsMain() && StringUtils.isNotEmpty(mfDemand.getCrossPlatformApproveState())) {
JSONObject jsonObject = new JSONObject();
jsonObject.put("zqSystemCode", SysFuncCode);
jsonObject.put("guid", vo.getGuid());
jsonObject.put("listingStatus", vo.getListingStatus());
invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getGroundingPickUrl());
jsonObject.put("bizCode", SysFuncCode);
jsonObject.put("operation", "SJ");
JSONObject data = new JSONObject();
data.put("guid", vo.getGuid());
data.put("listingStatus", vo.getListingStatus());
jsonObject.put("zqData", data);
invokeUtil.invokeMainDel(jsonObject, zqConfig.getAppKey(), zqConfig.getReceiveUrl());
}
return Boolean.TRUE;
}
......
......@@ -23,8 +23,6 @@ public class ZQConfig {
private String receiveUrl = "";
private String groundingPickUrl = "";
private Boolean isMain = false;
/**
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!