| | |
| | | BizType[] getBizTypes(String btmName) throws PLException; |
| | | |
| | | /** |
| | | * 业务类型列表查询,非树结构:用于UI定义左侧业务类型查询,只返回name和lable |
| | | * @param btmName |
| | | * @return |
| | | * @throws PLException |
| | | */ |
| | | Tree getBizTree(String btmName) throws PLException; |
| | | |
| | | /** |
| | | * 查询所有的业务类型映射 |
| | | * @return key 是业务的英文名称的小写 |
| | | */ |
| | |
| | | * @param btmId 业务类型的编号 |
| | | * @return 属性的内容 |
| | | */ |
| | | List<OsBtmTypeAttributeVO> listAttributeByBtmId(String btmId); |
| | | List<OsBtmTypeAttributeVO> listAttributeByBtmId(String btmId) throws PLException; |
| | | |
| | | /** |
| | | * 根据业务类型获取包含的属性--包含基础属性 |
| | | * @param btmId 业务类型的编号 |
| | | * @return 属性的内容 |
| | | */ |
| | | List<OsBtmTypeAttributeVO> listAttributeByBtmIdHasDefault(String btmId); |
| | | List<OsBtmTypeAttributeVO> listAttributeByBtmIdHasDefault(String btmId) throws PLException; |
| | | |
| | | /** |
| | | * 参照业务类型 |
| | |
| | | |
| | | /** |
| | | * 导出业务类型 |
| | | * name 业务类型名称 |
| | | * @return 创建结果 |
| | | * oid 业务类型名称 |
| | | * @return |
| | | */ |
| | | void expData(String oid, HttpServletResponse response) throws PLException, IOException; |
| | | |