| | |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.omd.ltm.LinkType; |
| | | import com.vci.starter.web.pagemodel.BaseQueryObject; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | 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.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | |
| | | List<String> getAllLtName() throws PLException; |
| | | |
| | | /** |
| | | * 获取使用该业务类型的链接类型名 |
| | | * @param btmName 业务类型名称 |
| | | * @return |
| | | */ |
| | | List<String> getUsedBtmLinkList(String btmName); |
| | | |
| | | /** |
| | | * 查询所有的链接类型 |
| | | * @return 链接类型对象 |
| | | */ |
| | |
| | | * @param id 编号 |
| | | * @return 链接类型 |
| | | */ |
| | | OsLinkTypeVO getLinkTypeById(String id); |
| | | OsLinkTypeVO getLinkTypeById(String id) throws PLException; |
| | | |
| | | /** |
| | | * 获取链接类型的属性 |
| | | * @param linkTypeId 链接类型的编号 |
| | | * @return 链接类型的属性 |
| | | */ |
| | | List<OsLinkTypeAttributeVO> listAttributeByLinkId(String linkTypeId); |
| | | List<OsLinkTypeAttributeVO> listAttributeByLinkId(String linkTypeId) throws PLException; |
| | | |
| | | /** |
| | | * 链接类型的列表 |
| | |
| | | * @return 属性的信息 |
| | | */ |
| | | List<OsLinkTypeAttributeVO> getAllAttributeByLink(String name) throws PLException, ParseException; |
| | | |
| | | /** |
| | | * 获取设置排序字段的排序字段 |
| | | * @param linkType 链接类型的编号 |
| | | * @param btmType 业务类型的编号 |
| | | * @param direction 正/反向 |
| | | * @return 属性的信息 |
| | | */ |
| | | List<String> getAllOrderbyAttributeByLink(String linkType, String btmType, String direction) throws PLException, ParseException; |
| | | } |