From d5ffec728c333461b466ba5761616f90076117e5 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期五, 19 四月 2024 17:57:04 +0800 Subject: [PATCH] 1、主要完成对一些基础类的替换,将以前老的bean对象换成新平台的bean对象。 2、对树的查询接口进行修改测试联调。 3、对列表数据的查询接口进行修改测试联调。 4、对通用保存接口进行编写测试。 --- Source/platformProject/vci-platform-web/src/main/java/com/vci/web/service/WebLoServiceI.java | 34 +++++++++++++++++----------------- 1 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/service/WebLoServiceI.java b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/service/WebLoServiceI.java index a070f16..09a7282 100644 --- a/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/service/WebLoServiceI.java +++ b/Source/platformProject/vci-platform-web/src/main/java/com/vci/web/service/WebLoServiceI.java @@ -117,7 +117,7 @@ * @return * @throws VciBaseException */ - Map<String,ClientBusinessObject> queryLinkedCbo(LinkObject[] lo, boolean isDirection) throws VciBaseException; + Map<String,com.vci.client.bof.ClientBusinessObject> queryLinkedCbo(LinkObject[] lo, boolean isDirection) throws VciBaseException; /** *鏌ヨ閾炬帴绫诲瀷鏌愮鐨勪笟鍔$被鍨� @@ -126,7 +126,7 @@ * @return * @throws VciBaseException */ - Map<String,ClientBusinessObject> queryLinkedCbo(List los, boolean isDirection) throws VciBaseException; + Map<String,com.vci.client.bof.ClientBusinessObject> queryLinkedCbo(List los, boolean isDirection) throws VciBaseException; /** *鏌ヨ閾炬帴绫诲瀷鏌愮鐨勪笟鍔$被鍨� @@ -135,7 +135,7 @@ * @return * @throws VciBaseException */ - Map<String,ClientBusinessObject> queryLinkedCbo(ClientLinkObject[] clo, boolean isDirection) throws VciBaseException; + Map<String,com.vci.client.bof.ClientBusinessObject> queryLinkedCbo(ClientLinkObject[] clo, boolean isDirection) throws VciBaseException; /** * 鏌ヨ閾炬帴绫诲瀷鏌愮鐨勪笟鍔$被鍨� @@ -145,7 +145,7 @@ * @return * @throws VciBaseException */ - Map<String, ClientBusinessObject> queryLinkedCbo(ClientLinkObject[] clol, + Map<String, com.vci.client.bof.ClientBusinessObject> queryLinkedCbo(ClientLinkObject[] clol, boolean isDirection, List<String> queryColumn) throws VciBaseException; /** @@ -156,7 +156,7 @@ * @return * @throws VciBaseException */ - Map<String, ClientBusinessObject> queryLinkedCbo(List los, + Map<String, com.vci.client.bof.ClientBusinessObject> queryLinkedCbo(List los, boolean isDirection, List<String> queryColumn) throws VciBaseException; /** @@ -165,7 +165,7 @@ * @return map * @throws VciBaseException */ - List<Map> clos2Map(List<ClientLinkObject> clos) throws VciBaseException; + List<Map> clos2Map(List<com.vci.client.bof.ClientLinkObject> clos) throws VciBaseException; /** * ClientLinkObject 杞负HashMap @@ -173,7 +173,7 @@ * @return * @throws VciBaseException */ - Map clo2Map(ClientLinkObject clo) throws VciBaseException; + Map clo2Map(com.vci.client.bof.ClientLinkObject clo) throws VciBaseException; /** * map杞负ClientLinkObject @@ -234,14 +234,14 @@ * @param linkTypeDataQuery 鏌ヨ瀵硅薄 * @return 閾炬帴绫诲瀷鍜屽叧鑱旂殑to绔� */ - List<BOAndLO> queryCLOAndBOBySchema(UILinkTypeDataQuery linkTypeDataQuery) ; + List<com.vci.corba.query.data.BOAndLO> queryCLOAndBOBySchema(UILinkTypeDataQuery linkTypeDataQuery) ; /** * 浣跨敤閾炬帴绫诲瀷鐨勫悕绉版煡璇� 閾炬帴绫诲瀷鐨則o绔殑涓氬姟绫诲瀷 * @param linkTypeDataQuery 鏌ヨ鐨勫璞� * @return 閾炬帴瀵硅薄鍜宼o绔笟鍔″璞� */ - List<BOAndLO> queryCLOAndBoByLinkType(UILinkTypeDataQuery linkTypeDataQuery); + List<com.vci.corba.query.data.BOAndLO> queryCLOAndBoByLinkType(UILinkTypeDataQuery linkTypeDataQuery); /** * 鏌ヨ鍒楄〃 @@ -275,13 +275,13 @@ * @param attributeName 灞炴�у悕绉� * @param attributeValue 灞炴�х殑鍊� */ - public default void setAttribute(ClientLinkObject clo,String attributeName,String attributeValue){ - AttributeValue[] attrValues =clo.getLinkObject().newAttrValList; - ArrayList<AttributeValue> attrValList = new ArrayList(); - AttributeValue attrVal; + public default void setAttribute(com.vci.client.bof.ClientLinkObject clo,String attributeName,String attributeValue){ + com.vci.corba.omd.data.AttributeValue[] attrValues =clo.getLinkObject().newAttrValList; + ArrayList<com.vci.corba.omd.data.AttributeValue> attrValList = new ArrayList(); + com.vci.corba.omd.data.AttributeValue attrVal; int i; if (attrValues != null && attrValues.length > 0) { - AttributeValue[] var9 = attrValues; + com.vci.corba.omd.data.AttributeValue[] var9 = attrValues; i = attrValues.length; for(int var7 = 0; var7 < i; ++var7) { @@ -294,7 +294,7 @@ boolean isExist = false; for(i = 0; i < attrValList.size(); ++i) { - attrVal = (AttributeValue)attrValList.get(i); + attrVal = (com.vci.corba.omd.data.AttributeValue)attrValList.get(i); if (attrVal.attrName.toUpperCase().equals(attributeName.toUpperCase())) { attrVal.attrVal = attributeValue; isExist = true; @@ -303,12 +303,12 @@ } if (!isExist) { - attrVal = new AttributeValue(); + attrVal = new com.vci.corba.omd.data.AttributeValue(); attrVal.attrName = attributeName.toUpperCase(); attrVal.attrVal = attributeValue; attrValList.add(attrVal); } - clo.getLinkObject().newAttrValList = (AttributeValue[])attrValList.toArray(new AttributeValue[attrValList.size()]); + clo.getLinkObject().newAttrValList = (com.vci.corba.omd.data.AttributeValue[])attrValList.toArray(new com.vci.corba.omd.data.AttributeValue[attrValList.size()]); }; } -- Gitblit v1.9.3