#----------------------------公共的表---------------------------
#配置表:比如部署主鍵的id生成規則。以及版本校驗
select
*from
act_ge_property;#--
--------------------------部署相關----------------------------
#流程模型 儲存了模型的bmp建模 可以通過模型資料進行流程部署 type=
2為表單引擎的模型
select
*from
act_de_model;
#流程模型部署物件表 每部署一次生成一條記錄,首先生成這條資料,它的id主鍵將會被act_re_procdef和act_ge_bytearray作為外來鍵
select
*from
act_re_deployment;
#流程定義表 每次部署產生一次定義 執行時流程關聯 對應流程相關就是 processdefinition
select
*from act_re_procdef where id_=
'group_process_test:1:5fee531f-62cb-11ec-95fa-acde48001122';
#資源檔案表流程模型資源檔案的真正存放地方,它每部署一次就會產生2條記錄,一條是關於bpmn規範的檔案內容存放在bytes欄位中,
select
*from
act_ge_bytearray;
#這張表,在xml進行部署時,它沒有內容(flowable應該是放棄了此表改用act_de_model)。
select
*from
act_re_model
select
*from
act_de_model#--
-----------------------------執行時相關---------------------
#執行的例項表 如果有並行閘道器則會有多條
#這張表示父子級的表 parent_id就是對應流程裡的processinstance
#他的子級就是當前執行節點,如果有並行閘道器就會有多個子集
select
*from act_ru_execution where id_=
'f02a7b5a-7287-11ec-b863-acde48001122
'#記錄當前執行中任務 待處理
select
*from act_ru_task t where t.proc_inst_id_=
'32c2e63d-6242-11ec-8507-acde48001122
'#執行時流程人員表 任務參與者資料表。主要儲存當前節點參與者的資訊。
select
*from act_ru_identitylink l where l.proc_inst_id_=
'66dc27b0-62cb-11ec-95fa-acde48001122'#
-------------------------------歷史相關----------------------
#歷史流程例項表
select
*from act_hi_procinst h where h.proc_inst_id_=
'66dc27b0-62cb-11ec-95fa-acde48001122
'#歷史活動資訊。這裡記錄流程流轉過的所有節點,與hi_taskinst不同的是,taskinst只記錄usertask內容
select
*from
act_hi_actinst
#歷史task
select
*from
act_hi_taskinst
#歷史流程人員表 任務參與者資料表。主要儲存歷史節點參與者的資訊
select
*from act_hi_identitylink l where l.proc_inst_id_=
'32c2e63d-6242-11ec-8507-acde48001122'#
------------------------------流程變數相關------------------
select
*from
act_ru_variable
select
*from
act_hi_varinst#--
----------------------------意見相關----------------------
#審批意見
select
*from
act_hi_comment
#審批附件
select
*from
act_hi_attachment#--
--------------------------定時任務相關-------------------
#執行中的定時任務 定時開始事件,定時邊界事件
select
*from
act_ru_timer_job#--
-----------------------訊號事件相關-------------------------
#訂閱了事件的流程例項 訊號事件和訊息事件
select
*from
act_ru_event_subscr#--
---------------------------鎖相關------------------------
#查詢被鎖的表
select
*from
act_de_databasechangeloglock;
#解除鎖定
update act_de_databasechangeloglock set locked=
0, lockgranted=
null, lockedby=
null
where id=
1#查詢被鎖的表
select
*from
act_fo_databasechangeloglock;
#解除鎖定
update
act_fo_databasechangeloglock
set locked =0,
lockgranted
=null
,lockedby
=null
where
id =
1
#儲存表單定義的資訊 用於流程的表單版本隔離 type 2為表單select
*from
act_fo_form_definition
#儲存使用者填充後表單例項資訊
select
*from
act_fo_form_instance
#儲存表單部署元資料
select
*from
act_fo_form_deployment
#儲存表單定義的資源 act_fo_form_definition,以及使用者填充表單資訊 act_fo_form_instance
select
*from act_fo_form_resource;
flowable 流程設計器 瀋陽拋丸器系列
瀋陽拋丸器系列 r7vdwxg 瀋陽拋丸器系列 1 無需預除塵裝置,能一次性處理高達1000mg m3濃度的煙塵,排放小於15mg m3,工藝流程簡單 按抽樣檢驗。拋丸機的安裝及使用技巧有哪些 所有拋丸機在安裝過程中都要遵守如下守則 主機就位 主機在就位時其水平度 重量度必須達到圖紙要求。分部件安裝...
flowable 流程發起人
1.設定流程發起人 設定流程發起人 authentication.setauthenticateduserid userid processinstance processinstance runtimeservice.startprocessinstancebykey procdefkey,bus...
flowable 獲取流程發起人
1.設定流程發起人 設定流程發起人 authentication.setauthenticateduserid userid processinstance processinstance runtimeservice.startprocessinstancebykey procdefkey,bus...