| | |
| | | package com.vci.web.service; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | 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.PLUILayout; |
| | | import com.vci.model.PLDefination; |
| | | import com.vci.pagemodel.PLDefinationVO; |
| | | import com.vci.pagemodel.PLUILayoutCloneVO; |
| | | import com.vci.starter.web.exception.VciBaseException; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import com.vci.dto.UIAuthorDTO; |
| | | import com.vci.starter.web.pagemodel.Tree; |
| | | import com.vci.pagemodel.PLDefinationVO; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | |
| | | /** |
| | | * 根据上下文ID和区域类型,按顺序获取当前区域的tab页 |
| | | */ |
| | | List<PLTabPage> getTabByContextIdAndType(String contextId, int areaType) throws PLException; |
| | | DataGrid getTabByContextIdAndType(String contextId, int areaType) throws PLException; |
| | | |
| | | /** |
| | | * 添加区域数据 |
| | |
| | | * @param plPageContextOId |
| | | * @return |
| | | */ |
| | | List<PLPageDefination> getPLPageDefinations(String plPageContextOId); |
| | | DataGrid getPLPageDefinations(String plPageContextOId) throws PLException; |
| | | |
| | | /** |
| | | * 添加页面定义 |
| | |
| | | //配置按钮相关接口 |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取UI权限树 |
| | | * @param baseQueryObject |
| | | * @return |
| | | * @throws VciBaseException |
| | | */ |
| | | List<Tree> getUIAuthor(BaseQueryObject baseQueryObject)throws Exception; |
| | | |
| | | /*** |
| | | * UI授权 |
| | | * @param uiAuthorDTO |
| | | * @return |
| | | * @throws Exception |
| | | */ |
| | | public boolean authorizedUI(UIAuthorDTO uiAuthorDTO)throws Exception; |
| | | |
| | | |
| | | } |