企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
流程启动前事件 **返回值** string,正常返回值为空,如果不为空,会抛出异常,异常信息就是返回值 **参数** | 名称 | 类型 | 描述 |非空 | --- | --- | --- |--- | |flow|FM_Flow|要启动的流程对象|是 | objContext| Entities| 数据库上下文 |是 | entityId| int|流程表单对应的实体ID |是 | bizId| int|业务数据ID |是 | starter| int|发起流程的用户ID |是 **示例** ``` public static string BeforeStartLeaveFlow(FM_Flow flow, Entities objContext, int entityId, int bizId, int starter) { return null; } ```