import { P2PMetadataEntityBase } from './abstract-p2p-metadata-entity-base'; import { IBizProcessEntity } from './interface-biz-process-entity'; import { AifCallType } from './aif-call-type'; /** * 业务流程实体抽象类 */ export declare abstract class BizProcessEntity extends P2PMetadataEntityBase implements IBizProcessEntity { BizEventMetadataId: string; BizEventId: string; BizActionMetadataId: string; BizActionId: string; IsEnabled: boolean; CallType: AifCallType; }