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;
|
}
|