流程设计器=》gooflow
主要接口
1.FlowDesignService
string AddFlowDef(FlowDefModel flowDef);
添加流程定义FlowMessage UpdateFlowDef(FlowDefModel model);
修改流程定义FlowMessage DeleteFlowDef(IList ids)
删除流程定义FlowDefModel GetFlowDef(string id);
得到流程定义对象FlowMessage SaveDiagram(FlowModel flowDef);
保存流程设置Bitmap GetBitmap(string flowDefId);
返回流程图PagedResult GetList(FlowDefFilter filter);
分页查询流程定义
2.FlowInstanceService
InstanceMessage CreateInstance
创建实例InstanceMessage Complete
处理流程FlowInstance GetRunFlowInstance(string flowId);
得到当前运行的实例List GetHistoryFlowInstances(string flowId);
得到历史流程处理记录列表Bitmap GetRunBitmap(string flowId)
得到运行中的流程图