import { IMetadataEntity } from '../interface-metadata-entity'; import { AifBizActionType } from '../aif-biz-action-type'; /** * 业务动作实体类接口 */ export interface IBizActionEntity extends IMetadataEntity { /**业务动作类型(生单/回写) */ BizActionType: AifBizActionType; /**BE元数据Id */ BeMetadataId: string; /**BE类型 */ BeType: string; /**业务动作代理构件元数据Id */ BizActionAgentMetadataId: string; /**业务动作代理构件Id */ BizActionAgentComponentId: string; /**VO元数据ID */ VoMetadataId: string; /**VO类型 */ VoType: string; /**业务实体Id */ BeId: string; /**视图对象Id */ VoId: string; }