From 663878fdcd0d44c105888014f4cdf7fc926f609f Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期三, 19 六月 2024 10:27:04 +0800 Subject: [PATCH] 1、去掉client包的相关更改。 2、修改登录鉴权修改。 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/WebBoServiceI.java | 45 +++++++++++++++++++++++---------------------- 1 files changed, 23 insertions(+), 22 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/WebBoServiceI.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/WebBoServiceI.java index 634c6d8..88e3208 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/WebBoServiceI.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/WebBoServiceI.java @@ -1,8 +1,9 @@ package com.vci.web.service; -import com.vci.client.bof.ClientBusinessObject; import com.vci.common.qt.object.Condition; import com.vci.common.qt.object.QueryTemplate; +import com.vci.corba.omd.data.BusinessObject; +import com.vci.corba.omd.data.LinkObject; import com.vci.starter.web.exception.VciBaseException; import com.vci.starter.web.pagemodel.DataGrid; import com.vci.starter.web.pagemodel.PageHelper; @@ -40,7 +41,7 @@ * @return * @throws VciBaseException */ - ClientBusinessObject createCBOByBtmName(String btmName) throws VciBaseException; + BusinessObject createCBOByBtmName(String btmName) throws VciBaseException; /** * 鏍规嵁鏌ヨ鏉′欢鏉ユ煡璇笟鍔$被鍨嬩笅鐨勬暟鎹� @@ -49,7 +50,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBO(String btmType, Map<String, String> conditionMap) throws VciBaseException; + List<BusinessObject> queryCBO(String btmType, Map<String, String> conditionMap) throws VciBaseException; /** * 鏀寔鎺掑簭鍜屽垎椤电殑鏌ヨ涓氬姟绫诲瀷涓嬬殑鏁版嵁 @@ -59,7 +60,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBO(String btmType, Map<String, String> conditionMap, PageHelper ph) throws VciBaseException; + List<BusinessObject> queryCBO(String btmType, Map<String, String> conditionMap, PageHelper ph) throws VciBaseException; /** * 鏀寔鑷畾涔夋煡璇㈠瓧娈碉紙鍖呮嫭鍙傜収銆佹灇涓惧拰鐢熷懡鍛ㄦ湡锛� @@ -70,7 +71,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBO(String btmType, Map<String, String> conditionMap, PageHelper ph, List<String> clauseList) throws VciBaseException; + List<BusinessObject> queryCBO(String btmType, Map<String, String> conditionMap, PageHelper ph, List<String> clauseList) throws VciBaseException; /** * 鎷疯礉鍒嗛〉鍜屾帓搴忕殑璁剧疆鍒版煡璇㈡ā鏉� @@ -86,7 +87,7 @@ * @param enumAttrName 鏋氫妇鐨勫悕绉� * @throws VciBaseException 鏌ヨ鏋氫妇鍑洪敊鐨勬椂鍊欎細鎶涘嚭寮傚父 */ - void queryEnumText(com.vci.client.bof.ClientBusinessObject cbo, com.vci.client.bof.ClientLinkObject clo, List<String> enumAttrName) throws VciBaseException; + void queryEnumText(BusinessObject cbo, LinkObject clo, List<String> enumAttrName) throws VciBaseException; /** * 缁欓摼鎺ョ被鍨嬭缃睘鎬� @@ -94,7 +95,7 @@ * @param attributeName 灞炴�х殑鍚嶇О * @param attributeValue 灞炴�х殑鍊� */ - void setAttributeValueForClo(com.vci.client.bof.ClientLinkObject clo, String attributeName, String attributeValue); + void setAttributeValueForClo(LinkObject clo, String attributeName, String attributeValue); /** * 浣跨敤鏌ヨ鏂规鏉ユ煡璇㈡暟鎹紝杩斿洖CBO @@ -104,7 +105,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap) throws VciBaseException; + List<BusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap) throws VciBaseException; /** * 浣跨敤鏌ヨ鏂规鏉ユ煡璇㈡暟鎹紝杩斿洖CBO锛屾敮鎸佸垎椤� @@ -115,7 +116,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap, PageHelper ph) throws VciBaseException; + List<BusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap, PageHelper ph) throws VciBaseException; /** * 浣跨敤鍚嶅瓧鑾峰彇鏌ヨ妯℃澘 @@ -136,7 +137,7 @@ * @return * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap, PageHelper ph, List<String> clauseList) throws VciBaseException; + List<BusinessObject> queryCBOByScheme(String queryScheme, Map<String, String> conditionMap, Map<String, String> replaceMap, PageHelper ph, List<String> clauseList) throws VciBaseException; /** * 鏌ヨ鏁伴噺 @@ -182,7 +183,7 @@ * @return CBO * @throws VciBaseException */ - List<com.vci.client.bof.ClientBusinessObject> queryBySql(String sql, Map<String, String> conditionMap) throws VciBaseException; + List<BusinessObject> queryBySql(String sql, Map<String, String> conditionMap) throws VciBaseException; /** * 鍙敤sql璇彞鏌ヨ锛岃繖涓拰queryBySql鍖哄埆鏄紝鐗规畩鐨剆ql(濡傚寘鍚湁鍑芥暟鐨�)鍙互鐢ㄨ繖涓柟娉曪紝浣嗘槸鏈塻ql娉ㄥ叆椋庨櫓 @@ -190,7 +191,7 @@ * @return CBO * @throws VciBaseException 鏌ヨ鍑洪敊娲绘姏鍑哄紓甯� */ - List<com.vci.client.bof.ClientBusinessObject> queryByOnlySql(String sql) throws VciBaseException; + List<BusinessObject> queryByOnlySql(String sql) throws VciBaseException; /** * 鍙敤sql璇彞鏌ヨ锛岃繖涓拰queryBySqlForMap鍖哄埆鏄紝鐗规畩鐨剆ql(濡傚寘鍚湁鍑芥暟鐨�)鍙互鐢ㄨ繖涓柟娉曪紝浣嗘槸鏈塻ql娉ㄥ叆椋庨櫓 @@ -474,36 +475,36 @@ DataGrid queryGridClassByScheme(String queryScheme, Class c, Map<String, String> conditionMap, Map<String, String> replaceMap, PageHelper ph) throws VciBaseException; /** - * ClientBusinessObject 杞负HashMap + * BusinessObject 杞负HashMap * @param cbos CBOS * @return map * @throws VciBaseException */ - List<Map> cbos2Map(List<ClientBusinessObject> cbos) throws VciBaseException; + List<Map> cbos2Map(List<BusinessObject> cbos) throws VciBaseException; /** - * ClientBusinessObject 杞负HashMap + * BusinessObject 杞负HashMap * @param cbo * @return * @throws VciBaseException */ - Map cbo2Map(com.vci.client.bof.ClientBusinessObject cbo) throws VciBaseException; + Map cbo2Map(BusinessObject cbo) throws VciBaseException; /** - * map杞负clientBusinessObject + * map杞负BusinessObject * @param map * @return * @throws VciBaseException */ - List<ClientBusinessObject> map2Cbos(List<Map> map) throws VciBaseException; + List<BusinessObject> map2Cbos(List<Map> map) throws VciBaseException; /** - * map杞负clientBusinessObject + * map杞负BusinessObject * @param map * @return * @throws VciBaseException */ - ClientBusinessObject map2Cbo(Map map) throws VciBaseException; + BusinessObject map2Cbo(Map map) throws VciBaseException; /** * 鎵归噺淇濆瓨涓氬姟绫诲瀷鍜岄摼鎺ョ被鍨嬬殑淇℃伅 @@ -572,7 +573,7 @@ * @return cbo * @throws VciBaseException 鍙傛暟涓虹┖锛屾暟鎹笉瀛樺湪浼氭姏鍑哄紓甯� */ - ClientBusinessObject selectCBOByOid(String oid,String btmName) throws VciBaseException; + BusinessObject selectCBOByOid(String oid,String btmName) throws VciBaseException; /** * 浣跨敤涓婚敭闆嗗悎鑾峰彇瀵硅薄 @@ -590,7 +591,7 @@ * @return 涓氬姟鏁版嵁鐨勯泦鍚� * @throws VciBaseException 鍙傛暟涓虹┖锛屾煡璇㈠嚭閿欎細鎶涘嚭寮傚父 */ - List<ClientBusinessObject> selectCBOByOidCollection(Collection<String> oidCollection,String btmName) throws VciBaseException; + List<BusinessObject> selectCBOByOidCollection(Collection<String> oidCollection,String btmName) throws VciBaseException; /** * 浣跨敤鏂扮殑鏌ヨ灏佽鍣ㄦ潵鏌ヨ -- Gitblit v1.9.3