ludc
2024-07-31 fe02c17b263405059837da6e3e5f7a353df58e99
Source/plt-web/plt-web-parent/plt-web/src/main/java/com/vci/web/service/OsLinkTypeServiceI.java
@@ -8,7 +8,9 @@
import com.vci.pagemodel.OsBtmTypeAttributeVO;
import com.vci.pagemodel.OsLinkTypeAttributeVO;
import com.vci.pagemodel.OsLinkTypeVO;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Collection;
import java.util.List;
@@ -145,4 +147,16 @@
     * @return 创建结果
     */
    BaseResult createView() throws PLException;
    /**
     * 导出链接类型
     * name 链接类型名称
     * @return 创建结果
     */
    void expData(String oid, HttpServletResponse response) throws PLException, IOException;
    /**
     * 导入链接类型
     * @param file 上传的文件
     * @return
     */
    BaseResult impData(MultipartFile file) throws Exception;
}