bpmn

  • activiti
  • flowable

# Repositoryservice 部署流程相关表
SELECT * FROM act_re_deployment #部署对象表

select* from act_re_procdef  #流程定义表

select * from act_ge_bytearray #资源文件表

select * from act_ge_property #主键生成策略表

# RuntimeService   TaskService
######流程实例,执行对象,任务#######
select * from act_ru_execution #正在执行的执行对象表  流程启动一次只要没有执行完,就会有一条数据

select * from act_ru_task #正在执行的任务表(只有节点是UserTask的时候,该表中存在数据) 可能有多条数据

select * from act_ru_variable ; #记录流程运行时的流程变量

select * from act_ru_identitylink ; ##存放流程办理人的信息


# 流程 的 历史

select * from act_hi_procinst ; #历史流程实例  流程实例的历史表

select * from act_hi_taskinst ;  #历史任务实例 任务历史表

select * from act_hi_actinst;  #历史活动节点表 所有活动节点的历史表

select * from act_hi_varinst ;   #历史流程变量表

select * from act_hi_identitylink ;   ##历史办理人表

select * from act_hi_comment ;   #批注表

select * from act_hi_attachment ;#附件表

 

 
select * from act_hi_actinst  #所有活动节点的历史表