From 148ad7a3d157e53ab1483830b39968b0ddad746d Mon Sep 17 00:00:00 2001 From: gssong <1742057357@qq.com> Date: 星期二, 26 三月 2024 22:00:31 +0800 Subject: [PATCH] update 补充工作流sql脚本 --- script/sql/sqlserver/flowable.sql | 127 +++++++++++++++++++++++++ script/sql/oracle/flowable.sql | 66 ++++++++++++ script/sql/flowable.sql | 9 + script/sql/postgres/flowable.sql | 97 +++++++++++++++++++ 4 files changed, 289 insertions(+), 10 deletions(-) diff --git a/script/sql/flowable.sql b/script/sql/flowable.sql index 9c0d8bb..ab363fa 100644 --- a/script/sql/flowable.sql +++ b/script/sql/flowable.sql @@ -33,7 +33,7 @@ create_time datetime null comment '鍒涘缓鏃堕棿', update_by bigint null comment '鏇存柊鑰�', update_time datetime null comment '鏇存柊鏃堕棿', - tenant_id varchar(20) default '000000' null comment '绉熸埛缂栧彿', + tenant_id varchar(20) null comment '绉熸埛缂栧彿', PRIMARY KEY (id) USING BTREE ) ENGINE = InnoDB COMMENT = '璇峰亣鐢宠琛�'; @@ -47,7 +47,7 @@ category_code varchar(255) null comment '鍒嗙被缂栫爜', parent_id bigint null comment '鐖剁骇id', sort_num int(19) null comment '鎺掑簭', - tenant_id varchar(20) default '000000' null comment '绉熸埛缂栧彿', + tenant_id varchar(20) null comment '绉熸埛缂栧彿', create_dept bigint null comment '鍒涘缓閮ㄩ棬', create_by bigint null comment '鍒涘缓鑰�', create_time datetime null comment '鍒涘缓鏃堕棿', @@ -69,7 +69,7 @@ instance_id varchar(255) null comment '娴佺▼瀹炰緥id', task_type varchar(255) not null comment '鑺傜偣绫诲瀷', assignee varchar(2000) not null comment '瀹℃壒浜�', - tenant_id varchar(20) default '000000' null comment '绉熸埛缂栧彿', + tenant_id varchar(20) null comment '绉熸埛缂栧彿', create_dept bigint null comment '鍒涘缓閮ㄩ棬', create_by bigint null comment '鍒涘缓鑰�', create_time datetime null comment '鍒涘缓鏃堕棿', @@ -78,6 +78,7 @@ ) comment '鑺傜偣瀹℃壒璁板綍'; +DROP TABLE if EXISTS wf_form_definition; create table wf_form_definition ( id bigint not null comment '涓婚敭' @@ -91,7 +92,7 @@ update_by bigint null comment '鏇存柊鑰�', update_time datetime null comment '鏇存柊鏃堕棿', remark varchar(500) default '' null comment '澶囨敞', - tenant_id varchar(20) default '000000' null comment '绉熸埛缂栧彿', + tenant_id varchar(20) null comment '绉熸埛缂栧彿', constraint uni_definition_id unique (definition_id) ) diff --git a/script/sql/oracle/flowable.sql b/script/sql/oracle/flowable.sql index bb012d5..6fde11f 100644 --- a/script/sql/oracle/flowable.sql +++ b/script/sql/oracle/flowable.sql @@ -35,7 +35,7 @@ CREATE_TIME DATE, UPDATE_BY NUMBER(20), UPDATE_TIME DATE, - TENANT_ID VARCHAR2(20) default '000000' + TENANT_ID VARCHAR2(20) ); comment on table TEST_LEAVE is '璇峰亣鐢宠琛�' @@ -64,7 +64,7 @@ unique, PARENT_ID NUMBER(20), SORT_NUM NUMBER(10), - TENANT_ID VARCHAR2(20) default '000000' + TENANT_ID VARCHAR2(20), CREATE_DEPT NUMBER(20), CREATE_BY NUMBER(20), CREATE_TIME DATE, @@ -86,6 +86,68 @@ comment on column WF_CATEGORY.UPDATE_TIME is '鏇存柊鏃堕棿' INSERT INTO wf_category values (1, 'OA', 'OA', 0, 0, '000000', 103, 1, sysdate, 1, sysdate); +create table WF_TASK_BACK_NODE +( + ID NUMBER(20) not null + constraint PK_WF_TASK_BACK_NODE + primary key, + NODE_ID VARCHAR2(255) not null, + NODE_NAME VARCHAR2(255) not null, + ORDER_NO NUMBER(20) not null, + INSTANCE_ID VARCHAR2(255) not null, + TASK_TYPE VARCHAR2(255) not null, + ASSIGNEE VARCHAR2(2000) not null, + TENANT_ID VARCHAR2(20), + CREATE_DEPT NUMBER(20), + CREATE_BY NUMBER(20), + CREATE_TIME DATE, + UPDATE_BY NUMBER(20), + UPDATE_TIME DATE +); +comment on table WF_TASK_BACK_NODE is '鑺傜偣瀹℃壒璁板綍' +comment on column WF_TASK_BACK_NODE.ID is '涓婚敭' +comment on column WF_TASK_BACK_NODE.NODE_ID is '鑺傜偣id' +comment on column WF_TASK_BACK_NODE.NODE_NAME is '鑺傜偣鍚嶇О' +comment on column WF_TASK_BACK_NODE.ORDER_NO is '鎺掑簭' +comment on column WF_TASK_BACK_NODE.SORT_NUM is '鎺掑簭' +comment on column WF_TASK_BACK_NODE.INSTANCE_ID is '娴佺▼瀹炰緥id' +comment on column WF_TASK_BACK_NODE.TASK_TYPE is '鑺傜偣绫诲瀷' +comment on column WF_TASK_BACK_NODE.ASSIGNEE is '瀹℃壒浜�' +comment on column WF_TASK_BACK_NODE.TENANT_ID is '绉熸埛缂栧彿' +comment on column WF_TASK_BACK_NODE.CREATE_DEPT is '鍒涘缓閮ㄩ棬' +comment on column WF_TASK_BACK_NODE.CREATE_BY is '鍒涘缓鑰�' +comment on column WF_TASK_BACK_NODE.CREATE_TIME is '鍒涘缓鏃堕棿' +comment on column WF_TASK_BACK_NODE.UPDATE_BY is '鏇存柊鑰�' +comment on column WF_TASK_BACK_NODE.UPDATE_TIME is '鏇存柊鏃堕棿' + +create table WF_FORM_DEFINITION +( + ID NUMBER(20) NOT NULL + CONSTRAINT PK_WF_FORM_DEFINITION + PRIMARY KEY, + PATH VARCHAR2(200) NOT NULL, + DEFINITION_ID VARCHAR2(255) NOT NULL, + PROCESS_KEY VARCHAR2(255) NOT NULL, + TENANT_ID VARCHAR2(20), + CREATE_DEPT NUMBER(20), + CREATE_BY NUMBER(20), + CREATE_TIME DATE, + UPDATE_BY NUMBER(20), + UPDATE_TIME DATE, + constraint uni_definition_id + unique (definition_id) +); +comment on table WF_FORM_DEFINITION is '琛ㄥ崟閰嶇疆' +comment on column WF_FORM_DEFINITION.ID is '涓婚敭' +comment on column WF_FORM_DEFINITION.DEFINITION_ID is '娴佺▼瀹氫箟ID' +comment on column WF_FORM_DEFINITION.PROCESS_KEY is '娴佺▼KEY' +comment on column WF_FORM_DEFINITION.TENANT_ID is '绉熸埛缂栧彿' +comment on column WF_FORM_DEFINITION.CREATE_DEPT is '鍒涘缓閮ㄩ棬' +comment on column WF_FORM_DEFINITION.CREATE_BY is '鍒涘缓鑰�' +comment on column WF_FORM_DEFINITION.CREATE_TIME is '鍒涘缓鏃堕棿' +comment on column WF_FORM_DEFINITION.UPDATE_BY is '鏇存柊鑰�' +comment on column WF_FORM_DEFINITION.UPDATE_TIME is '鏇存柊鏃堕棿' + INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11638, '璇峰亣鐢宠', 5, 1, 'leave', 'workflow/leave/index', 1, 0, 'C', '0', '0', 'demo:leave:list', '#', 103, 1, sysdate, NULL, NULL, '璇峰亣鐢宠鑿滃崟'); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11639, '璇峰亣鐢宠鏌ヨ', 11638, 1, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:query', '#', 103, 1, sysdate, NULL, NULL, ''); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11640, '璇峰亣鐢宠鏂板', 11638, 2, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:add', '#', 103, 1, sysdate, NULL, NULL, ''); diff --git a/script/sql/postgres/flowable.sql b/script/sql/postgres/flowable.sql index e7376d4..4e4f708 100644 --- a/script/sql/postgres/flowable.sql +++ b/script/sql/postgres/flowable.sql @@ -35,7 +35,7 @@ create_time timestamp, update_by bigint, update_time timestamp, - tenant_id varchar(20) default '000000'::varchar + tenant_id varchar(20) ); comment on table test_leave is '璇峰亣鐢宠琛�'; @@ -76,7 +76,7 @@ category_code varchar(255), parent_id bigint, sort_num bigint, - tenant_id varchar(20) default '000000'::varchar, + tenant_id varchar(20), create_dept bigint, create_by bigint, create_time timestamp, @@ -116,6 +116,99 @@ INSERT INTO wf_category values (1, 'OA', 'OA', 0, 0, '000000', 103, 1, now(), 1, now()); +create table wf_task_back_node +( + id bigint not null + constraint pk_wf_task_back_node + primary key, + node_id varchar(255) not null, + node_name varchar(255) not null, + order_no bigint not null, + instance_id varchar(255) not null, + task_type varchar(255) not null, + assignee varchar(2000) not null, + tenant_id varchar(20), + create_dept bigint, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp +); + +comment on table wf_task_back_node is '鑺傜偣瀹℃壒璁板綍'; + +comment on column wf_task_back_node.id is '涓婚敭'; + +comment on column wf_task_back_node.node_id is '鑺傜偣id'; + +comment on column wf_task_back_node.node_name is '鑺傜偣鍚嶇О'; + +comment on column wf_task_back_node.order_no is '鎺掑簭'; + +comment on column wf_task_back_node.instance_id is '娴佺▼瀹炰緥id'; + +comment on column wf_task_back_node.task_type is '鑺傜偣绫诲瀷'; + +comment on column wf_task_back_node.assignee is '瀹℃壒浜�'; + +comment on column wf_task_back_node.tenant_id is '绉熸埛id'; + +comment on column wf_task_back_node.create_dept is '鍒涘缓閮ㄩ棬'; + +comment on column wf_task_back_node.create_by is '鍒涘缓鑰�'; + +comment on column wf_task_back_node.create_time is '鍒涘缓鏃堕棿'; + +comment on column wf_task_back_node.update_by is '淇敼鑰�'; + +comment on column wf_task_back_node.update_time is '淇敼鏃堕棿'; + +alter table wf_task_back_node + owner to postgres; + +create table wf_form_definition +( + id bigint(20) not null + constraint pk_wf_form_definition + primary key, + path varchar(200) not null, + definition_id varchar(255) not null, + process_key varchar(255) not null, + tenant_id varchar(20), + create_dept bigint, + create_by bigint, + create_time timestamp, + update_by bigint, + update_time timestamp +); + +comment on table wf_form_definition is '琛ㄥ崟閰嶇疆'; + +comment on column wf_form_definition.id is '涓婚敭'; + +comment on column wf_form_definition.path is '璺敱鍦板潃'; + +comment on column wf_form_definition.definition_id is '娴佺▼瀹氫箟ID'; + +comment on column wf_form_definition.process_key is '娴佺▼KEY'; + +comment on column wf_form_definition.tenant_id is '绉熸埛id'; + +comment on column wf_form_definition.create_dept is '鍒涘缓閮ㄩ棬'; + +comment on column wf_form_definition.create_by is '鍒涘缓鑰�'; + +comment on column wf_form_definition.create_time is '鍒涘缓鏃堕棿'; + +comment on column wf_form_definition.update_by is '淇敼鑰�'; + +comment on column wf_form_definition.update_time is '淇敼鏃堕棿'; + +alter table wf_form_definition + owner to postgres; +create unique index uni_definition_id + on wf_form_definition (definition_id); + INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11638, '璇峰亣鐢宠', 5, 1, 'leave', 'workflow/leave/index', 1, 0, 'C', '0', '0', 'demo:leave:list', '#', 103, 1, now(), NULL, NULL, '璇峰亣鐢宠鑿滃崟'); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11639, '璇峰亣鐢宠鏌ヨ', 11638, 1, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:query', '#', 103, 1, now(), NULL, NULL, ''); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11640, '璇峰亣鐢宠鏂板', 11638, 2, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:add', '#', 103, 1, now(), NULL, NULL, ''); diff --git a/script/sql/sqlserver/flowable.sql b/script/sql/sqlserver/flowable.sql index 347f3f4..99db42c 100644 --- a/script/sql/sqlserver/flowable.sql +++ b/script/sql/sqlserver/flowable.sql @@ -34,7 +34,7 @@ create_time datetime2, update_by bigint, update_time datetime2, - tenant_id nvarchar(20) default '000000' + tenant_id nvarchar(20) ) go @@ -95,7 +95,7 @@ unique, parent_id bigint, sort_num int, - tenant_id nvarchar(20) default '000000', + tenant_id nvarchar(20), create_dept bigint, create_by bigint, create_time datetime2, @@ -148,6 +148,129 @@ INSERT INTO wf_category values (1, 'OA', 'OA', 0, 0, '000000', 103, 1, getdate(), 1, getdate()); +create table wf_task_back_node +( + id bigint not null primary key, + node_id nvarchar(255) not null, + node_name nvarchar(255) not null, + order_no int not null, + instance_id nvarchar(255) not null, + task_type nvarchar(255) not null, + assignee nvarchar(2000) not null, + tenant_id nvarchar(20), + create_dept bigint, + create_by bigint, + create_time datetime2, + update_by bigint, + update_time datetime2 +) + +go +exec sp_addextendedproperty 'MS_Description', N'鑺傜偣瀹℃壒璁板綍', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node' +go + +exec sp_addextendedproperty 'MS_Description', N'涓婚敭', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'id' +go + +exec sp_addextendedproperty 'MS_Description', N'鑺傜偣id', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'node_id' +go + +exec sp_addextendedproperty 'MS_Description', N'鑺傜偣鍚嶇О', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'node_name' +go + +exec sp_addextendedproperty 'MS_Description', N'鎺掑簭', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'order_no' +go + +exec sp_addextendedproperty 'MS_Description', N'娴佺▼瀹炰緥id', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'instance_id' +go + +exec sp_addextendedproperty 'MS_Description', N'鑺傜偣绫诲瀷', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'task_type' +go + +exec sp_addextendedproperty 'MS_Description', N'瀹℃壒浜�', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'assignee' +go + +exec sp_addextendedproperty 'MS_Description', N'绉熸埛缂栧彿', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'tenant_id' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓閮ㄩ棬', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'create_dept' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓鑰�', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'create_by' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓鏃堕棿', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'create_time' +go + +exec sp_addextendedproperty 'MS_Description', N'鏇存柊鑰�', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', 'update_by' +go + +exec sp_addextendedproperty 'MS_Description', N'鏇存柊鏃堕棿', 'SCHEMA', 'dbo', 'TABLE', 'wf_task_back_node', 'COLUMN', + 'update_time' +go + +create table wf_form_definition +( + id bigint(20) not null primary key, + path nvarchar(200) not null, + definition_id nvarchar(255) + constraint uni_definition_id + unique, + process_key nvarchar(255) not null, + tenant_id nvarchar(20), + create_dept bigint, + create_by bigint, + create_time datetime2, + update_by bigint, + update_time datetime2 +) + +go +exec sp_addextendedproperty 'MS_Description', N'琛ㄥ崟閰嶇疆', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition' +go + +exec sp_addextendedproperty 'MS_Description', N'涓婚敭', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', 'id' +go + +exec sp_addextendedproperty 'MS_Description', N'璺敱鍦板潃', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'path' +go + +exec sp_addextendedproperty 'MS_Description', N'娴佺▼瀹氫箟ID', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'definition_id' +go + +exec sp_addextendedproperty 'MS_Description', N'娴佺▼KEY', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'process_key' +go + +exec sp_addextendedproperty 'MS_Description', N'绉熸埛缂栧彿', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'tenant_id' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓閮ㄩ棬', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'create_dept' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓鑰�', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', 'create_by' +go + +exec sp_addextendedproperty 'MS_Description', N'鍒涘缓鏃堕棿', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'create_time' +go + +exec sp_addextendedproperty 'MS_Description', N'鏇存柊鑰�', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', 'update_by' +go + +exec sp_addextendedproperty 'MS_Description', N'鏇存柊鏃堕棿', 'SCHEMA', 'dbo', 'TABLE', 'wf_form_definition', 'COLUMN', + 'update_time' +go + INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11638, '璇峰亣鐢宠', 5, 1, 'leave', 'workflow/leave/index', 1, 0, 'C', '0', '0', 'demo:leave:list', '#', 103, 1, getdate(), NULL, NULL, '璇峰亣鐢宠鑿滃崟'); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11639, '璇峰亣鐢宠鏌ヨ', 11638, 1, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:query', '#', 103, 1, getdate(), NULL, NULL, ''); INSERT INTO sys_menu(menu_id, menu_name, parent_id, order_num, path, component, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (11640, '璇峰亣鐢宠鏂板', 11638, 2, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:add', '#', 103, 1, getdate(), NULL, NULL, ''); -- Gitblit v1.9.3