ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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;
}