1 Star 0 Fork 150

javaalpha/dcy-fast

forked from 青年/dcy-fast 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
flow-node.sql 2.03 KB
一键复制 编辑 原始数据 按行查看 历史
青年 提交于 2021-06-10 15:43 +08:00 . feat: 添加获取任务列表
drop table if exists act_flow_node;
drop table if exists act_flow_node_dept;
drop table if exists act_flow_node_role;
drop table if exists act_flow_node_user;
/*==============================================================*/
/* Table: act_flow_node */
/*==============================================================*/
create table act_flow_node
(
id varchar(36) not null comment '主键id',
proc_def_id varchar(255) comment '流程定义id',
flow_id varchar(255) comment '流程节点id',
flow_name varchar(255) comment '流程节点名称',
flow_type varchar(11) comment '流程审批类型(1:用户;2:角色;3:部门)',
primary key (id)
);
/*==============================================================*/
/* Table: act_task_node_depa */
/*==============================================================*/
create table act_flow_node_dept
(
flow_node_id varchar(36) comment '节点类型id',
dept_id varchar(36) comment '部门id'
);
alter table act_flow_node_dept comment '任务节点关联部门表';
/*==============================================================*/
/* Table: act_task_node_role */
/*==============================================================*/
create table act_flow_node_role
(
flow_node_id varchar(36) comment '节点类型id',
role_id varchar(36) comment '角色id'
);
alter table act_flow_node_role comment '任务节点关联角色表';
/*==============================================================*/
/* Table: act_task_node_user */
/*==============================================================*/
create table act_flow_node_user
(
flow_node_id varchar(36) comment '节点类型id',
user_id varchar(36) comment '用户id'
);
alter table act_flow_node_user comment '任务节点关联用户表';
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/javaalpha/dcy-fast.git
git@gitee.com:javaalpha/dcy-fast.git
javaalpha
dcy-fast
dcy-fast
master

搜索帮助