diff --git a/mhd_finance/src/main/java/com/linke/finance/domain/reconciliation/repository/persistence/ReconciliationImpl.java b/mhd_finance/src/main/java/com/linke/finance/domain/reconciliation/repository/persistence/ReconciliationImpl.java index fb91c4632..eb7c8c8a3 100644 --- a/mhd_finance/src/main/java/com/linke/finance/domain/reconciliation/repository/persistence/ReconciliationImpl.java +++ b/mhd_finance/src/main/java/com/linke/finance/domain/reconciliation/repository/persistence/ReconciliationImpl.java @@ -443,7 +443,7 @@ public class ReconciliationImpl extends ServiceImpl 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 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 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 urlList = thirdPartyServiceFeign.queryList(query); if (urlList != null && urlList.size() > 0) { - url = urlList.get(0).getInterfaceType(); + url = urlList.get(0).getInterfaceTypeValue(); } else { throw new ServiceException("未找到该组织的推送地址!"); }