| | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.omd.ltm.LinkType; |
| | | import com.vci.corba.omd.qtm.QTD; |
| | | import com.vci.dto.QTInfoDTO; |
| | | import com.vci.pagemodel.OsBtmTypeAttributeVO; |
| | | import com.vci.pagemodel.OsLinkTypeAttributeVO; |
| | | import com.vci.pagemodel.OsLinkTypeVO; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import org.dom4j.DocumentException; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.Collection; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | */ |
| | | BaseResult queryTemplateList(String btmName, Boolean linkFlag) throws PLException; |
| | | /** |
| | | * 查询模板 |
| | | * 保存查询模板 |
| | | * @param qtd 查询模板实体类 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult saveTemplate(QTD qtd) throws PLException; |
| | | /** |
| | | * 修改查询模板 |
| | | * @param qtd 查询模板实体类 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult updateTemplate(QTD qtd) throws PLException; |
| | | /** |
| | | * 删除查询模板 |
| | | * @param name 查询模板名 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult deleteTemplate(String name) throws PLException; |
| | | /** |
| | | * |
| | | * @param dataMap 传输的数据对象: |
| | | * linkTypeName 链接类型、 |
| | | * rdPositive 方向,true正向,false反向 |
| | | * btmName 业务类型名称 |
| | | * combRelaType 业务类型选择值 |
| | | * versionValue 版本班次值 |
| | | * isQueryIsLeaf 是否选择下级 |
| | | * level 子节点层数 |
| | | * @return 查询结果 |
| | | */ |
| | | BaseResult getCriteria(HashMap<String,Object> dataMap) throws PLException; |
| | | /** |
| | | * 查询模板列表 |
| | | * @param btName 类型名称 |
| | | * @return 查询结果 |
| | | */ |
| | | BaseResult getObjTypeQTs(String btName) throws PLException, DocumentException; |
| | | /** |
| | | * 检查查询模板名字是否存在 |
| | | * @param name 查询模板名字 |
| | | * @return 查询结果 |
| | | */ |
| | | BaseResult isExistsQT(String name) throws PLException; |
| | | |
| | | /** |
| | | * 链接类型查询模板保存 |
| | | * @param qtInfoDTO 保存传输对象 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult linkSave(QTInfoDTO qtInfoDTO) throws PLException; |
| | | } |