mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-30 07:06:39 +08:00
update 移除流程表单 formConfig 属性,表单配置信息都放一起便于使用。
This commit is contained in:
parent
421952d05d
commit
8b1c89da37
@ -32,11 +32,6 @@ public class WfForm extends TenantEntity {
|
|||||||
*/
|
*/
|
||||||
private String formName;
|
private String formName;
|
||||||
|
|
||||||
/**
|
|
||||||
* 表单配置
|
|
||||||
*/
|
|
||||||
private String formConfig;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 表单内容
|
* 表单内容
|
||||||
*/
|
*/
|
||||||
|
@ -1112,7 +1112,6 @@ insert into sys_oss_config values (5, '000000', 'image', 'ruoyi', 'r
|
|||||||
create table wf_form (
|
create table wf_form (
|
||||||
form_id number(20) not null,
|
form_id number(20) not null,
|
||||||
form_name varchar(64) default '',
|
form_name varchar(64) default '',
|
||||||
form_config nclob,
|
|
||||||
content nclob,
|
content nclob,
|
||||||
create_dept number(20) default null,
|
create_dept number(20) default null,
|
||||||
create_by number(20) default null,
|
create_by number(20) default null,
|
||||||
@ -1128,7 +1127,6 @@ alter table wf_form add constraint pk_wf_form primary key (form_id);
|
|||||||
comment on table wf_form is '流程表单信息表';
|
comment on table wf_form is '流程表单信息表';
|
||||||
comment on column wf_form.form_id is '表单主键';
|
comment on column wf_form.form_id is '表单主键';
|
||||||
comment on column wf_form.form_name is '表单名称';
|
comment on column wf_form.form_name is '表单名称';
|
||||||
comment on column wf_form.form_config is '表单配置';
|
|
||||||
comment on column wf_form.content is '表单内容';
|
comment on column wf_form.content is '表单内容';
|
||||||
comment on column wf_form.create_dept is '创建部门';
|
comment on column wf_form.create_dept is '创建部门';
|
||||||
comment on column wf_form.create_by is '创建者';
|
comment on column wf_form.create_by is '创建者';
|
||||||
|
@ -1139,7 +1139,6 @@ create table if not exists bpmn_form
|
|||||||
form_id int8,
|
form_id int8,
|
||||||
tenant_id varchar(20) default '000000'::varchar,
|
tenant_id varchar(20) default '000000'::varchar,
|
||||||
form_name varchar(255) default ''::varchar not null,
|
form_name varchar(255) default ''::varchar not null,
|
||||||
form_config text,
|
|
||||||
content text,
|
content text,
|
||||||
create_dept int8,
|
create_dept int8,
|
||||||
create_by int8,
|
create_by int8,
|
||||||
@ -1153,7 +1152,6 @@ create table if not exists bpmn_form
|
|||||||
comment on table wf_form is '流程表单信息表';
|
comment on table wf_form is '流程表单信息表';
|
||||||
comment on column bpmn_form.form_id is '表单主键';
|
comment on column bpmn_form.form_id is '表单主键';
|
||||||
comment on column bpmn_form.form_name is '表单名称';
|
comment on column bpmn_form.form_name is '表单名称';
|
||||||
comment on column bpmn_form.form_config is '表单配置';
|
|
||||||
comment on column bpmn_form.content is '表单内容';
|
comment on column bpmn_form.content is '表单内容';
|
||||||
comment on column bpmn_form.create_dept is '创建部门';
|
comment on column bpmn_form.create_dept is '创建部门';
|
||||||
comment on column bpmn_form.create_by is '创建者';
|
comment on column bpmn_form.create_by is '创建者';
|
||||||
|
@ -826,7 +826,6 @@ create table wf_form (
|
|||||||
form_id bigint not null comment '表单id',
|
form_id bigint not null comment '表单id',
|
||||||
tenant_id varchar(20) default '000000'comment '租户编号',
|
tenant_id varchar(20) default '000000'comment '租户编号',
|
||||||
form_name varchar(255) default null comment '表单名称',
|
form_name varchar(255) default null comment '表单名称',
|
||||||
form_config longtext comment '表单配置',
|
|
||||||
content longtext comment '表单内容',
|
content longtext comment '表单内容',
|
||||||
create_dept bigint default null comment '创建部门',
|
create_dept bigint default null comment '创建部门',
|
||||||
create_by bigint default null comment '创建者',
|
create_by bigint default null comment '创建者',
|
||||||
|
@ -2817,7 +2817,6 @@ CREATE TABLE wf_form
|
|||||||
(
|
(
|
||||||
form_id bigint NOT NULL,
|
form_id bigint NOT NULL,
|
||||||
form_name nvarchar(64) DEFAULT '' NULL,
|
form_name nvarchar(64) DEFAULT '' NULL,
|
||||||
form_config nvarchar(max) NULL,
|
|
||||||
content nvarchar(max) NULL,
|
content nvarchar(max) NULL,
|
||||||
create_dept bigint NULL,
|
create_dept bigint NULL,
|
||||||
create_by nvarchar(64) DEFAULT '' NULL,
|
create_by nvarchar(64) DEFAULT '' NULL,
|
||||||
@ -2844,12 +2843,6 @@ EXEC sp_addextendedproperty
|
|||||||
'TABLE', N'wf_form',
|
'TABLE', N'wf_form',
|
||||||
'COLUMN', N'form_name'
|
'COLUMN', N'form_name'
|
||||||
GO
|
GO
|
||||||
EXEC sp_addextendedproperty
|
|
||||||
'MS_Description', N'表单配置',
|
|
||||||
'SCHEMA', N'dbo',
|
|
||||||
'TABLE', N'wf_form',
|
|
||||||
'COLUMN', N'form_config'
|
|
||||||
GO
|
|
||||||
EXEC sp_addextendedproperty
|
EXEC sp_addextendedproperty
|
||||||
'MS_Description', N'表单内容',
|
'MS_Description', N'表单内容',
|
||||||
'SCHEMA', N'dbo',
|
'SCHEMA', N'dbo',
|
||||||
|
Loading…
Reference in New Issue
Block a user