update: 同步 RuoYi-Vue-Plus(v4.7.0) 更新

This commit is contained in:
konbai
2023-05-19 23:11:59 +08:00
parent ae5fc22972
commit ddf4145bff
87 changed files with 785 additions and 333 deletions

View File

@@ -1,28 +0,0 @@
update sys_menu set menu_id = 128 where menu_name = '已办任务'
drop table if exists `wf_copy`;
create table `wf_copy` (
`copy_id` bigint not null auto_increment comment '抄送主键',
`title` varchar(255) default '' comment '抄送标题',
`process_id` varchar(64) default '' comment '流程主键',
`process_name` varchar(255) default '' comment '流程名称',
`category_id` varchar(255) default '' comment '流程分类主键',
`deployment_id` varchar(64) default '' comment '部署主键',
`instance_id` varchar(64) default '' comment '流程实例主键',
`task_id` varchar(64) default '' comment '任务主键',
`user_id` bigint default null comment '用户主键',
`originator_id` bigint default null comment '发起人主键',
`originator_name` varchar(64) default '' comment '发起人名称',
`create_by` varchar(64) default '' comment '创建者',
`create_time` datetime default null comment '创建时间',
`update_by` varchar(64) default '' comment '更新者',
`update_time` datetime default null comment '更新时间',
`del_flag` char(1) default '0' comment '删除标志0代表存在 2代表删除',
primary key (`copy_id`)
) engine=innodb comment='流程抄送表';
insert into sys_menu values('127', '待签任务', '5', '4', 'claim', 'workflow/work/claim', '', 1, 0, 'C', '0', '0', 'workflow:process:claimList', 'checkbox', 'admin', sysdate(), '', null, '');
insert into sys_menu values('129', '抄送我的', '5', '6', 'copy', 'workflow/work/copy', '', 1, 0, 'C', '0', '0', 'workflow:process:copyList', 'checkbox', 'admin', sysdate(), '', null, '');
insert into sys_role_menu values ('2', '127');
insert into sys_role_menu values ('2', '129');

View File

@@ -1 +0,0 @@
由于 0.6.x 版本做了不兼容更新,在此不提供由 0.6.0 前版本升级的SQL脚本。

View File

@@ -1,46 +0,0 @@
update sys_menu set menu_id = 128 where menu_name = '已办任务'
create table wf_copy (
copy_id number(20) not null,
title varchar(255) default '',
process_id varchar(64) default '',
process_name varchar(255) default '',
category_id varchar(64) default '',
deployment_id varchar(64) default '',
instance_id varchar(64) default '',
task_id varchar(64) default '',
user_id number(20) not null,
originator_id number(20) not null,
originator_name varchar(64) default '',
create_by varchar(64) default '',
create_time date,
update_by varchar(64) default '',
update_time date,
del_flag nchar(1) default '0'
);
alter table wf_copy add constraint pk_wf_copy primary key (copy_id);
comment on table wf_copy is '流程抄送表';
comment on column wf_copy.copy_id is '抄送主键';
comment on column wf_copy.title is '抄送标题';
comment on column wf_copy.process_id is '流程主键';
comment on column wf_copy.process_name is '流程名称';
comment on column wf_copy.category_id is '流程分类主键';
comment on column wf_copy.deployment_id is '部署主键';
comment on column wf_copy.instance_id is '流程实例主键';
comment on column wf_copy.task_id is '任务主键';
comment on column wf_copy.user_id is '用户主键';
comment on column wf_copy.originator_id is '发起人主键';
comment on column wf_copy.originator_name is '发起人名称';
comment on column wf_copy.create_by is '创建者';
comment on column wf_copy.create_time is '创建时间';
comment on column wf_copy.update_by is '更新者';
comment on column wf_copy.update_time is '更新时间';
comment on column wf_copy.del_flag is '删除标志0代表存在 2代表删除';
insert into sys_menu values('127', '待签任务', '5', '4', 'claim', 'workflow/work/claim', '', 1, 0, 'C', '0', '0', 'workflow:process:claimList', 'checkbox', 'admin', sysdate, '', null, '');
insert into sys_menu values('129', '抄送我的', '5', '6', 'copy', 'workflow/work/copy', '', 1, 0, 'C', '0', '0', 'workflow:process:copyList', 'checkbox', 'admin', sysdate, '', null, '');
insert into sys_role_menu values ('2', '127');
insert into sys_role_menu values ('2', '129');

View File

@@ -1 +0,0 @@
由于 0.6.x 版本做了不兼容更新,在此不提供由 0.6.0 前版本升级的SQL脚本。

View File

@@ -1,47 +0,0 @@
update sys_menu set menu_id = 128 where menu_name = '已办任务'
drop table if exists wf_copy;
create table wf_copy
(
copy_id int8 default ''::varchar not null,,
title varchar(255) default ''::varchar,
process_id varchar(64) default ''::varchar,
process_name varchar(255) default ''::varchar,
category_id varchar(255) default ''::varchar,
deployment_id varchar(64) default ''::varchar,
instance_id varchar(64) default ''::varchar,
task_id varchar(64) default ''::varchar,
user_id int8,
originator_id int8,
originator_name varchar(64) default ''::varchar,
create_by varchar(64) default ''::varchar,
create_time timestamp,
update_by varchar(64) default ''::varchar,
update_time timestamp,
del_flag char(1) default '0'::bpchar,
constraint wf_copy_pk primary key (copy_id)
);
comment on table wf_copy is '流程抄送表';
comment on column wf_copy.copy_id is '抄送主键';
comment on column wf_copy.title is '抄送标题';
comment on column wf_copy.process_id is '流程主键';
comment on column wf_copy.process_name is '流程名称';
comment on column wf_copy.category_id is '流程分类主键';
comment on column wf_copy.deployment_id is '部署主键';
comment on column wf_copy.instance_id is '流程实例主键';
comment on column wf_copy.task_id is '任务主键';
comment on column wf_copy.user_id is '用户主键';
comment on column wf_copy.originator_id is '发起人主键';
comment on column wf_copy.originator_name is '发起人名称';
comment on column wf_copy.create_by is '创建者';
comment on column wf_copy.create_time is '创建时间';
comment on column wf_copy.update_by is '更新者';
comment on column wf_copy.update_time is '更新时间';
comment on column wf_copy.del_flag is '删除标志0代表存在 2代表删除';
insert into sys_menu values('127', '待签任务', '5', '4', 'claim', 'workflow/work/claim', '', 1, 0, 'C', '0', '0', 'workflow:process:claimList', 'checkbox', 'admin', now(), '', null, '');
insert into sys_menu values('129', '抄送我的', '5', '6', 'copy', 'workflow/work/copy', '', 1, 0, 'C', '0', '0', 'workflow:process:copyList', 'checkbox', 'admin', now(), '', null, '');
insert into sys_role_menu values ('2', '127');
insert into sys_role_menu values ('2', '129');

View File

@@ -1 +0,0 @@
由于 0.6.x 版本做了不兼容更新,在此不提供由 0.6.0 前版本升级的SQL脚本。

View File

@@ -1 +0,0 @@
由于 0.6.x 版本做了不兼容更新,在此不提供由 0.6.0 前版本升级的SQL脚本。