import { AifCallType } from './aif-call-type'; import { IP2PMetadataEntity } from './interface-p2p-metadata-entity'; /** * 业务流程实体类接口 */ export interface IBizProcessEntity extends IP2PMetadataEntity { /**业务事件元数据Id */ BizEventMetadataId: string; /**业务事件编号 */ BizEventId: string; /**业务动作元数据Id */ BizActionMetadataId: string; /**业务动作编号 */ BizActionId: string; /**是否启用 */ IsEnabled: boolean; /**调用类型 */ CallType: AifCallType; }