From 34c25ddf37a3eb8da9efb04efedad089f13efe83 Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 24 七月 2024 18:20:27 +0800 Subject: [PATCH] 部门导入调整,按照部门名称/实现层级关系。枚举导入功能接口上传,属性池添加新增、查询、修改、导出、查看应用范围等接口。业务类型、链接类型、枚举类型增加等接口属性是否产生数据检查、根据属性名修改业务类型和连接类型中对应属性方法,以及属性池中需要的一些下拉查询接口。 --- Source/Client/PLTClient/src/com/vci/client/oq/ui/linkqtimport/LinkQTImportTree.java | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/Client/PLTClient/src/com/vci/client/oq/ui/linkqtimport/LinkQTImportTree.java b/Source/Client/PLTClient/src/com/vci/client/oq/ui/linkqtimport/LinkQTImportTree.java index ef888a6..9b15257 100644 --- a/Source/Client/PLTClient/src/com/vci/client/oq/ui/linkqtimport/LinkQTImportTree.java +++ b/Source/Client/PLTClient/src/com/vci/client/oq/ui/linkqtimport/LinkQTImportTree.java @@ -22,6 +22,7 @@ import javax.swing.tree.TreeSelectionModel; import com.vci.client.LogonApplication; +import com.vci.client.common.providers.ServiceProvider; import com.vci.client.omd.linktype.LinkTypeStart; import com.vci.client.oq.QTClient; import com.vci.client.oq.QTDClient; @@ -329,7 +330,7 @@ */ // TODO Auto-generated method stub try { - QTInfo[] qtws = QTDClient.getService().getAllQTs(); + QTInfo[] qtws = ServiceProvider.getOMDService().getQTDService().getAllQTs(); boolean islaet = true; for (int i = 0; i < qtws.length; i++) { if (string.equals(qtws[i].qtName)) { @@ -420,7 +421,7 @@ private void getPLQtIsInDB(String string, QTD[] qtds) { // TODO Auto-generated method stub try { - QTD[] qtds2 = QTDClient.getService().getBizTypeQTDs(string); + QTD[] qtds2 = ServiceProvider.getOMDService().getQTDService().getBizTypeQTDs(string); QTD[] qtdsNewQtds = null; List<QTD> es = new ArrayList<QTD>(); for (QTD qtd : qtds) { -- Gitblit v1.9.3