ludc
2024-09-02 e45b445e2145dbd83864eb28417ae02bffc1a900
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsBtmServiceI.java
@@ -60,6 +60,14 @@
    BizType[] getBizTypes(String btmName) throws PLException;
    /**
     * 业务类型列表查询,非树结构:用于UI定义左侧业务类型查询,只返回name和lable
     * @param btmName
     * @return
     * @throws PLException
     */
    Tree getBizTree(String btmName) throws PLException;
    /**
     * 查询所有的业务类型映射
     * @return key 是业务的英文名称的小写
     */
@@ -114,14 +122,14 @@
     * @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;
    /**
     * 参照业务类型
@@ -275,8 +283,8 @@
    /**
     * 导出业务类型
     * name 业务类型名称
     * @return 创建结果
     * oid 业务类型名称
     * @return
     */
    void expData(String oid, HttpServletResponse response) throws PLException, IOException;