Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/UIManagerServiceI.java
@@ -1,9 +1,11 @@
package com.vci.web.service;
import com.vci.corba.common.PLException;
import com.vci.corba.portal.data.PLTabButton;
import com.vci.corba.portal.data.PLUILayout;
import com.vci.corba.portal.data.PLPageDefination;
import com.vci.corba.portal.data.PLTabPage;
import com.vci.pagemodel.PLTabButtonVO;
import com.vci.pagemodel.PLUILayoutCloneVO;
import com.vci.starter.web.exception.VciBaseException;
import com.vci.starter.web.pagemodel.BaseQueryObject;
@@ -111,24 +113,24 @@
    //页面设计相关接口
    /**
     * 查询页面设计定义
     * @param plPageContextOId
     * @param pageContextOId
     * @return
     */
    DataGrid getPLPageDefinations(String plPageContextOId) throws PLException;
    DataGrid getPLPageDefinations(String pageContextOId) throws PLException;
    /**
     * 添加页面定义
     * @param pd
     * @param pdVO
     * @return
     */
    boolean addPageDefination(PLDefinationVO pd) throws Throwable;
    boolean addPageDefination(PLDefinationVO pdVO) throws Throwable;
    /**
     * 修改页面定义
     * @param pd
     * @param pdVO
     * @return
     */
    boolean updatePageDefination(PLDefinationVO pd) throws Throwable;
    boolean updatePageDefination(PLDefinationVO pdVO) throws Throwable;
    /**
     * 删除页面定义
@@ -137,9 +139,55 @@
     */
    boolean delPageDefination(String[] oids) throws PLException;
    //配置按钮相关接口
    //页面设计下配置按钮相关接口
    /**
     * 获取页签区域按钮配置信息
     * @param pageDefinationOid
     * @return
     */
    List<PLTabButtonVO> getTabButtons(String pageDefinationOid);
    /**
     * 添加按钮配置信息
     * @param tabButtonVO
     * @return
     */
    BaseResult addTapButton(PLTabButtonVO tabButtonVO);
    /**
     * 修改按钮配置信息
     * @param tabButtonVO
     * @return
     */
    BaseResult updateTapButton(PLTabButtonVO tabButtonVO);
    /**
     * 保存或修改按钮配置信息
     * @param tabButtonVO
     * @return
     */
    boolean saveOrUpdateTapButton(PLTabButtonVO tabButtonVO,boolean isAdd);
    /**
     * 删除单个按钮配置
     * @param tabButton
     * @return
     */
    boolean deleteTapButton(PLTabButton tabButton) throws PLException;
    /**
     * 调整为下级按钮
     * @param plTabButton
     * @return
     */
    BaseResult joinBtn(PLTabButton plTabButton) throws PLException;
    /**
     * 调整为上级按钮
     * @param plTabButton
     * @return
     */
    BaseResult exitBtn(PLTabButton plTabButton) throws PLException;
    /**
     * 获取UI权限树
@@ -149,13 +197,13 @@
     */
    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;
}