wangting
2024-09-27 a3e87f78ee262ca9bb7d9b0c997639d5f3295890
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.vci.client.portal.custom;
 
import com.vci.corba.common.VCIError;
import com.vci.corba.omd.data.BusinessObject;
 
public interface ICommonFileUI {
 
    /**
     * 获取文档关联的所有文件
     * @param documentId,文档OID
     * @return
     * @throws PLMError
     * @throws VciException
     */
    public BusinessObject[] getAllFile(String documentId) throws VCIError;
    
    /**
     * 获取多对象管理的所有文件
     * @param objIds
     * @return
     * @throws VCIError
     */
    public BusinessObject[] getMultiObjectFiles(String[] objIds) throws VCIError;
}