加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
flow-activiti.sql 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
jimmy_JYue 提交于 2017-12-29 16:33 . Activiti流程的使用
drop table if exists biz_apply_simple;
drop table if exists flow_user;
/*==============================================================*/
/* Table: biz_apply_simple */
/*==============================================================*/
create table biz_apply_simple
(
id varchar(32) not null comment '编号',
content text not null comment '内容',
status int not null comment '状态',
create_time datetime not null comment '创建时间',
create_user_id varchar(32) not null comment '创建人',
primary key (id)
);
alter table biz_apply_simple comment '简单流程业务数据表';
/*==============================================================*/
/* Table: flow_user */
/*==============================================================*/
create table flow_user
(
id varchar(32) not null comment '编码',
sys_no varchar(32) not null comment '来源系统',
user_id varchar(32) not null comment '用户编码',
name varchar(80) not null comment '姓名',
emp_code varchar(50) comment '员工编码',
create_time datetime not null comment '创建时间',
primary key (id)
);
alter table flow_user comment '流程用户表';
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化