nc推送地址动态从三方接口获取;

This commit is contained in:
王奎兴
2026-03-06 16:13:06 +08:00
parent 006b1a43a2
commit 41f7898d17
@@ -443,7 +443,7 @@ public class ReconciliationImpl extends ServiceImpl<ReconciliationMapper, Reconc
query.setInterfaceType("nc");
List<SysDepartInterfaceInfoPo> urlList = thirdPartyServiceFeign.queryList(query);
if (urlList != null && urlList.size() > 0) {
url = urlList.get(0).getInterfaceType();
url = urlList.get(0).getInterfaceTypeValue();
} else {
throw new ServiceException("未找到该组织的推送地址!");
}
@@ -646,7 +646,7 @@ public class ReconciliationImpl extends ServiceImpl<ReconciliationMapper, Reconc
query.setInterfaceType("nc");
List<SysDepartInterfaceInfoPo> urlList = thirdPartyServiceFeign.queryList(query);
if (urlList != null && urlList.size() > 0) {
url = urlList.get(0).getInterfaceType();
url = urlList.get(0).getInterfaceTypeValue();
} else {
throw new ServiceException("未找到该组织的推送地址!");
}
@@ -904,7 +904,7 @@ public class ReconciliationImpl extends ServiceImpl<ReconciliationMapper, Reconc
query.setInterfaceType("nc");
List<SysDepartInterfaceInfoPo> urlList = thirdPartyServiceFeign.queryList(query);
if (urlList != null && urlList.size() > 0) {
url = urlList.get(0).getInterfaceType();
url = urlList.get(0).getInterfaceTypeValue();
} else {
throw new ServiceException("未找到该组织的推送地址!");
}
@@ -1070,7 +1070,7 @@ public class ReconciliationImpl extends ServiceImpl<ReconciliationMapper, Reconc
query.setInterfaceType("nc");
List<SysDepartInterfaceInfoPo> urlList = thirdPartyServiceFeign.queryList(query);
if (urlList != null && urlList.size() > 0) {
url = urlList.get(0).getInterfaceType();
url = urlList.get(0).getInterfaceTypeValue();
} else {
throw new ServiceException("未找到该组织的推送地址!");
}