From 214bfcb4f9f651a6707a857a5b902aa4984bf32d Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期二, 13 八月 2024 14:38:06 +0800 Subject: [PATCH] 1、对查询模板的的保存普通高级接口 --- Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java | 121 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 121 insertions(+), 0 deletions(-) diff --git a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java index 141ddf0..e8abcb5 100644 --- a/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java +++ b/Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java @@ -2,13 +2,18 @@ import com.vci.corba.common.PLException; import com.vci.corba.omd.btm.BizType; +import com.vci.dto.OsBtmTypeDTO; import com.vci.pagemodel.OsBtmTypeAttributeVO; import com.vci.pagemodel.OsBtmTypeVO; import com.vci.pagemodel.OsERVO; import com.vci.pagemodel.OsUsedAttributeVO; +import com.vci.starter.web.pagemodel.BaseResult; import com.vci.starter.web.pagemodel.DataGrid; import com.vci.starter.web.pagemodel.PageHelper; +import com.vci.starter.web.pagemodel.Tree; +import java.io.IOException; +import java.text.ParseException; import java.util.Collection; import java.util.List; import java.util.Map; @@ -150,4 +155,120 @@ * @return 鎵ц缁撴灉 */ OsERVO createERUsed(String btmId); + + /** + * 鑾峰彇鎵�鏈変笟鍔$被鍨嬶紙鏍戝舰缁撴瀯锛� + * @return 鏌ヨ缁撴灉 + */ + List<Tree> getTreeBizTypes() throws PLException; + + /** + * 鑾峰彇鎵�鏈変笟鍔$被鍨嬪悕绉伴泦鍚� + * @return + */ + List<String> getAllBtmName() throws PLException; + + /** + * 鑾峰彇涓氬姟鍏ㄩ儴灞炴�х被鍨� + * @param btmName 涓氬姟绫诲瀷鍚嶇О + * @return 灞炴�х殑淇℃伅 + */ + List<OsBtmTypeAttributeVO> getBizTypeQTDs(String btmName) throws PLException, ParseException; + + /** + * 鍒涘缓鏂扮殑涓氬姟绫诲瀷 + * @return + * @throws PLException + */ + boolean addBtmType(OsBtmTypeDTO btmTypeDTO) throws PLException; + + /** + * 鎵归噺鏂板涓氬姟绫诲瀷 + * @param bizTypes + * @return + */ + boolean addBtmTypes(List<BizType> bizTypes); + + /** + * 淇敼涓氬姟绫诲瀷 + * @param btmTypeDTO + * @return + * @throws PLException + */ + boolean updateBtmType(OsBtmTypeDTO btmTypeDTO) throws PLException; + + /** + * 鍒犻櫎涓氬姟绫诲瀷 + * @param btmTypeDTO + * @return + * @throws PLException + */ + boolean deleteBtmType(OsBtmTypeDTO btmTypeDTO) throws PLException; + + /** + * 涓�鑷存�ф鏌� + * @return + * @throws PLException + */ + BaseResult checkBtmConsistency() throws PLException; + + /** + * 涓�鑷存�ф鏌ヤ慨澶嶅姛鑳� + * @param repairData + * @return + */ + BaseResult executeRepair(String repairData) throws Exception; + + /** + * 鍒涘缓瑙嗗浘 + * @return + * @throws PLException + */ + boolean createView() throws PLException; + + /** + * 鍒犻櫎鏁版嵁鐣岄潰鐨勬煡璇� + * @return 涓氬姟绫诲瀷锛岄摼鎺ョ被鍨� + */ + BaseResult getObjectData() throws PLException; + + /** + * 鍒犻櫎鏁版嵁 + * @param btmNames 涓氬姟绫诲瀷鍚� + * @param linkNames 閾炬帴绫诲瀷鍚� + * @return + * @throws PLException + */ + List<Map> truncateTable(String[] btmNames,String[] linkNames) throws PLException; + + /** + * 鍒犻櫎鍏ㄩ儴绫诲瀷 + * @return + * @throws PLException + */ + BaseResult deleteAllType() throws PLException; + + /** + * 鏍规嵁涓氬姟绫诲瀷鍚嶇О鍜屽叾涓嬬殑灞炴�у悕绉拌幏鍙栦篃鏈夌殑绱㈠紩 + * @param btmName + * @param attrName + * @return + */ + List<String> getIndexByBtmAndAttrName(String btmName,String attrName); + + /** + * 鏍规嵁涓氬姟绫诲瀷鍚嶇О鍜屽叾涓嬬殑灞炴�у悕绉板垹闄ょ储寮� + * @param btmName + * @param attrName + * @return + */ + boolean delIndexByBtmAndAttrName(String btmName,String attrName); + + /** + * 缁欎笟鍔$被鍨嬩笅鐨勬寚瀹氬睘鎬ф柊澧炵储寮� + * @param addMap 濡傦細(btmName:part attrName:name indexName: PARTNAMEINDEX) + * @return + */ + boolean addIndex(Map<String,String> addMap); + } -- Gitblit v1.9.3