| | |
| | | package com.vci.web.service; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.portal.data.PLTabButton; |
| | | import com.vci.corba.omd.btm.BizType; |
| | | import com.vci.corba.omd.qtm.QTInfo; |
| | | import com.vci.corba.portal.data.PLUILayout; |
| | | import com.vci.corba.portal.data.PLPageDefination; |
| | | import com.vci.corba.portal.data.PLTabPage; |
| | | import com.vci.corba.portal.data.PortalVI; |
| | | import com.vci.pagemodel.PLTabButtonVO; |
| | | import com.vci.pagemodel.PLUILayoutCloneVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | |
| | | import com.vci.pagemodel.PLDefinationVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.File; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author ludc |
| | |
| | | boolean cloneUIContextData(PLUILayoutCloneVO pluiLayoutCloneVO) throws PLException; |
| | | |
| | | /** |
| | | * 根据勾选的条件获取需要导出的ui上下文树 |
| | | * @param expDatas |
| | | * @return |
| | | */ |
| | | Tree getExpContextTree(List<String> expDatas); |
| | | |
| | | /** |
| | | * 导出ui上下文(勾选的要导出的控制区的数据) |
| | | * oids |
| | | * @return |
| | | */ |
| | | void expUIContextData(String[] oids, HttpServletResponse response) throws PLException, IOException; |
| | | String expUIContextData(Map<String,String> expConditionMap) throws PLException, IOException; |
| | | |
| | | /** |
| | | * 导入UI上下文 |
| | | * @param file |
| | | * @return |
| | | */ |
| | | BaseResult impUIContextData(MultipartFile file); |
| | | BaseResult impUIContextData(File file, boolean isCovered,String selectBtm); |
| | | |
| | | //区域相关查询、添加、删除、修改等接口 |
| | | /** |
| | |
| | | * @param pageDefinationOid |
| | | * @return |
| | | */ |
| | | List<PLTabButtonVO> getTabButton(String pageDefinationOid); |
| | | List<PLTabButtonVO> getTabButtons(String pageDefinationOid); |
| | | |
| | | /** |
| | | * 添加按钮配置信息 |
| | |
| | | */ |
| | | boolean saveOrUpdateTapButton(PLTabButtonVO tabButtonVO,boolean isAdd); |
| | | |
| | | /** |
| | | * 删除单个按钮配置 |
| | | * @param tabButtonVO |
| | | * @return |
| | | */ |
| | | boolean deleteTapButton(PLTabButtonVO tabButtonVO) throws PLException; |
| | | |
| | | /** |
| | | * 调整为下级按钮 |
| | | * @param tabButtonVO |
| | | * @return |
| | | */ |
| | | BaseResult joinBtn(PLTabButtonVO tabButtonVO) throws PLException; |
| | | |
| | | /** |
| | | * 调整为上级按钮 |
| | | * @param tabButtonVO |
| | | * @return |
| | | */ |
| | | BaseResult exitBtn(PLTabButtonVO tabButtonVO) throws PLException; |
| | | |
| | | /** |
| | | * 获取UI权限树 |
| | |
| | | */ |
| | | List<Tree> getUIAuthor(BaseQueryObject baseQueryObject)throws Exception; |
| | | |
| | | /*** |
| | | /** |
| | | * UI授权 |
| | | * @param uiAuthorDTO |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public boolean authorizedUI(UIAuthorDTO uiAuthorDTO)throws Exception; |
| | | boolean authorizedUI(UIAuthorDTO uiAuthorDTO)throws Exception; |
| | | |
| | | /** |
| | | * 业务类型、源对象类型、顶层节点显示类型等都调用这个接口查询 |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | DataGrid<BizType> getBtmDatasByPage(BaseQueryObject baseQueryObject) throws Throwable; |
| | | |
| | | /** |
| | | * UI定义下拉查询(templateType为UI定义时的选择对象下拉查询) |
| | | * @param baseQueryObject selectBtmType 选择的源对象,带分页信息 |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | DataGrid<PLUILayout> getUILayoutDatasByPage(BaseQueryObject baseQueryObject)throws Throwable; |
| | | |
| | | /** |
| | | * 选择模板下拉查询(templateType为表格、表单、树表时的选择对象下拉查询) |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | DataGrid<PortalVI> getPortalVIDatasByPage(BaseQueryObject baseQueryObject) throws Throwable; |
| | | |
| | | /** |
| | | * 查询模板下拉查询 |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | DataGrid<QTInfo> getQTInfoDatasByPage(BaseQueryObject baseQueryObject)throws Throwable; |
| | | |
| | | } |