Эх сурвалжийг харах

update 补充工作流sql脚本

gssong 1 жил өмнө
parent
commit
148ad7a3d1

+ 5 - 4
script/sql/flowable.sql

@@ -33,7 +33,7 @@ create table test_leave
     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 @@ create table wf_category
     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 @@ create table wf_task_back_node
     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 @@ create table wf_task_back_node
 )
     comment '节点审批记录';
 
+DROP TABLE if EXISTS wf_form_definition;
 create table wf_form_definition
 (
     id            bigint                        not null comment '主键'
@@ -91,7 +92,7 @@ create table wf_form_definition
     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)
 )

+ 64 - 2
script/sql/oracle/flowable.sql

@@ -35,7 +35,7 @@ create table TEST_LEAVE
     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 @@ create table WF_CATEGORY
         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_BY is '更新者'
 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, '');

+ 95 - 2
script/sql/postgres/flowable.sql

@@ -35,7 +35,7 @@ create table test_leave
     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 @@ create table wf_category
     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 @@ create unique index uni_category_code
 
 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, '');

+ 125 - 2
script/sql/sqlserver/flowable.sql

@@ -34,7 +34,7 @@ create table test_leave
     create_time datetime2,
     update_by   bigint,
     update_time datetime2,
-    tenant_id   nvarchar(20) default '000000'
+    tenant_id   nvarchar(20)
 )
 go
 
@@ -95,7 +95,7 @@ create table wf_category
         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 @@ go
 
 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, '');