-- 1、通用數據表兩個 act_ge_bytearray、act_ge_property
--資源表act_ge_bytearray,存儲xml及activity根據xml自動生成的圖片
select * from act_ge_bytearray where name_ like '%成員得分%';
--屬性表,目前還不知道啥做用(待後續完善)
select * from act_ge_property;ide
-- 2、流程存儲表
-- 部署數據表,單個流程每部署一次,都會向該表插入一條數據
select * from act_re_deployment where name_ like '%成員得分%';
-- 流程定義表,單個流程每部署一次,都會向該表插入一條數據
select * from act_re_procdef where name_ like '%成員得分%';
--流程設計模型表,經過流程設計器設計流程後,會更新act_re_model中部分字段(EDITOR_SOURCE_VALUE_ID_和EDITOR_SOURCE_EXTRA_VALUE_ID_)的值同時會向表ct_ge_property插入數據
select * from act_re_model where name_ like '%成員得分%';設計
--3、身份數據表(能夠獨立於流程引擎而存在)
--用戶表
select * from act_id_user;
--用戶帳號信息表
select * from act_id_info;
--用戶組表
select * from act_id_group;
--用戶和用戶組的關係表
select * from act_id_membership;xml
--四運行時數據表
--流程實例表,包含流程實例數據和執行流(對象)數據
select * from act_ru_execution where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--流程任務表,運行中的任務均可以在該表中查詢到
select * from act_ru_task where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--流程參數表,包含流程實例參數、執行流參數、任務參數
select * from act_ru_variable where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--流程與身份關係表,能查詢到流程發起人、處理人等信息
select * from act_ru_identitylink;
--工做數據表,在流程執行過程當中定時或重複執行的工做保存在這張表中
select * from act_ru_job;
--事件描述表,猜想是用來保存流程設計時定義的事件數據
select * from act_ru_event_subscr;對象
--5、歷史數據表(歷史數據表實際上保存是那種一經寫入就不多會發生變化的數據)
--歷史流程實例表
select * from act_hi_procinst where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--歷史流程明細表,流程執行過程當中的參數值
select * from act_hi_detail where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--歷史任務表,全部已執行和正在執行的任務均可以在此表中查詢到
select * from act_hi_taskinst where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--歷史行爲表,流程執行過程當中全部的歷史節點和活動節點信息均可以在此表中查到,可是未執行到的節點的信息查詢不到
select * from act_hi_actinst where proc_inst_id_='44be3303bac945d9afd7557fd61e4c93';
--附件表,保存附件信息,附件路徑、上傳人、屬於哪一個任務哪一個流程等
select * from act_hi_attachment
--評論表,用來保存評論信息
select * from act_hi_comment;事件