flowable.sql 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. insert into sys_menu values('11616', '工作流' , '0', '6', 'workflow', '', '', '1', '0', 'M', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  2. insert into sys_menu values('11617', '模型管理', '11616', '2', 'model', 'workflow/model/index', '', '1', '1', 'C', '0', '0', 'workflow:model:list', 'tree-table', 103, 1, now(), NULL, NULL, '');
  3. insert into sys_menu values('11618', '我的任务', '0', '7', 'task', '', '', '1', '0', 'M', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  4. insert into sys_menu values('11619', '我的待办', '11618', '2', 'taskWaiting', 'workflow/task/taskWaiting', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  5. insert into sys_menu values('11632', '我的已办', '11618', '3', 'taskFinish', 'workflow/task/taskFinish', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  6. insert into sys_menu values('11633', '我的抄送', '11618', '4', 'taskCopyList', 'workflow/task/taskCopyList', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  7. insert into sys_menu values('11620', '流程定义', '11616', '3', 'processDefinition', 'workflow/processDefinition/index', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  8. insert into sys_menu values('11621', '流程实例', '11630', '1', 'processInstance', 'workflow/processInstance/index', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  9. insert into sys_menu values('11622', '流程分类', '11616', '1', 'category', 'workflow/category/index', '', '1', '0', 'C', '0', '0', 'workflow:category:list', 'tree-table', 103, 1, now(), NULL, NULL, '');
  10. insert into sys_menu values('11629', '我发起的', '11618', '1', 'myDocument', 'workflow/task/myDocument', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  11. insert into sys_menu values('11630', '流程监控', '11616', '4', 'monitor', '', '', '1', '0', 'M', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  12. insert into sys_menu values('11631', '待办任务', '11630', '2', 'allTaskWaiting', 'workflow/task/allTaskWaiting', '', '1', '1', 'C', '0', '0', '', 'tree-table', 103, 1, now(), NULL, NULL, '');
  13. -- 流程分类管理相关按钮
  14. insert into sys_menu values ('11623', '流程分类查询', '11622', '1', '#', '', '', 1, 0, 'F', '0', '0', 'workflow:category:query', '#', 103, 1, now(), null, null, '');
  15. insert into sys_menu values ('11624', '流程分类新增', '11622', '2', '#', '', '', 1, 0, 'F', '0', '0', 'workflow:category:add', '#', 103, 1, now(), null, null, '');
  16. insert into sys_menu values ('11625', '流程分类修改', '11622', '3', '#', '', '', 1, 0, 'F', '0', '0', 'workflow:category:edit', '#', 103, 1, now(), null, null, '');
  17. insert into sys_menu values ('11626', '流程分类删除', '11622', '4', '#', '', '', 1, 0, 'F', '0', '0', 'workflow:category:remove','#', 103, 1, now(), null, null, '');
  18. insert into sys_menu values ('11627', '流程分类导出', '11622', '5', '#', '', '', 1, 0, 'F', '0', '0', 'workflow:category:export','#', 103, 1, now(), null, null, '');
  19. -- 请假单信息
  20. DROP TABLE if EXISTS test_leave;
  21. create table test_leave
  22. (
  23. id bigint not null
  24. constraint test_leave_pk
  25. primary key,
  26. leave_type varchar(255),
  27. start_date timestamp,
  28. end_date timestamp,
  29. leave_days bigint,
  30. remark varchar(255),
  31. create_dept bigint,
  32. create_by bigint,
  33. create_time timestamp,
  34. update_by bigint,
  35. update_time timestamp,
  36. tenant_id varchar(20)
  37. );
  38. comment on table test_leave is '请假申请表';
  39. comment on column test_leave.id is '主键';
  40. comment on column test_leave.leave_type is '请假类型';
  41. comment on column test_leave.start_date is '开始时间';
  42. comment on column test_leave.end_date is '结束时间';
  43. comment on column test_leave.remark is '请假原因';
  44. comment on column test_leave.create_dept is '创建部门';
  45. comment on column test_leave.create_by is '创建者';
  46. comment on column test_leave.create_time is '创建时间';
  47. comment on column test_leave.update_by is '更新者';
  48. comment on column test_leave.update_time is '更新时间';
  49. comment on column test_leave.tenant_id is '租户编码';
  50. alter table test_leave
  51. owner to postgres;
  52. -- 流程分类信息表
  53. DROP TABLE if EXISTS wf_category;
  54. create table wf_category
  55. (
  56. id bigint not null
  57. constraint wf_category_pk
  58. primary key,
  59. category_name varchar(255),
  60. category_code varchar(255),
  61. parent_id bigint,
  62. sort_num bigint,
  63. tenant_id varchar(20),
  64. create_dept bigint,
  65. create_by bigint,
  66. create_time timestamp,
  67. update_by bigint,
  68. update_time timestamp
  69. );
  70. comment on table wf_category is '流程分类';
  71. comment on column wf_category.id is '主键';
  72. comment on column wf_category.category_name is '分类名称';
  73. comment on column wf_category.category_code is '分类编码';
  74. comment on column wf_category.parent_id is '父级id';
  75. comment on column wf_category.sort_num is '排序';
  76. comment on column wf_category.tenant_id is '租户id';
  77. comment on column wf_category.create_dept is '创建部门';
  78. comment on column wf_category.create_by is '创建者';
  79. comment on column wf_category.create_time is '创建时间';
  80. comment on column wf_category.update_by is '修改者';
  81. comment on column wf_category.update_time is '修改时间';
  82. alter table wf_category
  83. owner to postgres;
  84. create unique index uni_category_code
  85. on wf_category (category_code);
  86. INSERT INTO wf_category values (1, 'OA', 'OA', 0, 0, '000000', 103, 1, now(), 1, now());
  87. create table wf_task_back_node
  88. (
  89. id bigint not null
  90. constraint pk_wf_task_back_node
  91. primary key,
  92. node_id varchar(255) not null,
  93. node_name varchar(255) not null,
  94. order_no bigint not null,
  95. instance_id varchar(255) not null,
  96. task_type varchar(255) not null,
  97. assignee varchar(2000) not null,
  98. tenant_id varchar(20),
  99. create_dept bigint,
  100. create_by bigint,
  101. create_time timestamp,
  102. update_by bigint,
  103. update_time timestamp
  104. );
  105. comment on table wf_task_back_node is '节点审批记录';
  106. comment on column wf_task_back_node.id is '主键';
  107. comment on column wf_task_back_node.node_id is '节点id';
  108. comment on column wf_task_back_node.node_name is '节点名称';
  109. comment on column wf_task_back_node.order_no is '排序';
  110. comment on column wf_task_back_node.instance_id is '流程实例id';
  111. comment on column wf_task_back_node.task_type is '节点类型';
  112. comment on column wf_task_back_node.assignee is '审批人';
  113. comment on column wf_task_back_node.tenant_id is '租户id';
  114. comment on column wf_task_back_node.create_dept is '创建部门';
  115. comment on column wf_task_back_node.create_by is '创建者';
  116. comment on column wf_task_back_node.create_time is '创建时间';
  117. comment on column wf_task_back_node.update_by is '修改者';
  118. comment on column wf_task_back_node.update_time is '修改时间';
  119. alter table wf_task_back_node
  120. owner to postgres;
  121. create table wf_definition_config
  122. (
  123. id bigint(20) not null
  124. constraint pk_wf_definition_config
  125. primary key,
  126. form_id bigint(20) not null,
  127. definition_id varchar(255) not null,
  128. process_key varchar(255) not null,
  129. tenant_id varchar(20),
  130. create_dept bigint,
  131. create_by bigint,
  132. create_time timestamp,
  133. update_by bigint,
  134. update_time timestamp
  135. );
  136. comment on table wf_definition_config is '流程定义配置';
  137. comment on column wf_definition_config.id is '主键';
  138. comment on column wf_definition_config.form_id is '表单ID';
  139. comment on column wf_definition_config.definition_id is '流程定义ID';
  140. comment on column wf_definition_config.process_key is '流程KEY';
  141. comment on column wf_definition_config.tenant_id is '租户id';
  142. comment on column wf_definition_config.create_dept is '创建部门';
  143. comment on column wf_definition_config.create_by is '创建者';
  144. comment on column wf_definition_config.create_time is '创建时间';
  145. comment on column wf_definition_config.update_by is '修改者';
  146. comment on column wf_definition_config.update_time is '修改时间';
  147. alter table wf_definition_config
  148. owner to postgres;
  149. create unique index uni_definition_id
  150. on wf_definition_config (definition_id);
  151. 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, '请假申请菜单');
  152. 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, '');
  153. 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, '');
  154. 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 (11641, '请假申请修改', 11638, 3, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:edit', '#', 103, 1, now(), NULL, NULL, '');
  155. 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 (11642, '请假申请删除', 11638, 4, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:remove', '#', 103, 1, now(), NULL, NULL, '');
  156. 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 (11643, '请假申请导出', 11638, 5, '#', '', 1, 0, 'F', '0', '0', 'demo:leave:export', '#', 103, 1, now(), NULL, NULL, '');