flowable.sql 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. insert into sys_menu values('11616', '工作流' , '0', '6', 'workflow', '', '', '1', '0', 'M', '0', '0', '', 'workflow', 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', 'model', 103, 1, now(), NULL, NULL, '');
  3. insert into sys_menu values('11618', '我的任务', '0', '7', 'task', '', '', '1', '0', 'M', '0', '0', '', 'my-task', 103, 1, now(), NULL, NULL, '');
  4. insert into sys_menu values('11619', '我的待办', '11618', '2', 'taskWaiting', 'workflow/task/taskWaiting', '', '1', '1', 'C', '0', '0', '', 'waiting', 103, 1, now(), NULL, NULL, '');
  5. insert into sys_menu values('11632', '我的已办', '11618', '3', 'taskFinish', 'workflow/task/taskFinish', '', '1', '1', 'C', '0', '0', '', 'finish', 103, 1, now(), NULL, NULL, '');
  6. insert into sys_menu values('11633', '我的抄送', '11618', '4', 'taskCopyList', 'workflow/task/taskCopyList', '', '1', '1', 'C', '0', '0', '', 'my-copy', 103, 1, now(), NULL, NULL, '');
  7. insert into sys_menu values('11620', '流程定义', '11616', '3', 'processDefinition', 'workflow/processDefinition/index', '', '1', '1', 'C', '0', '0', '', 'process-definition', 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', 'category', 103, 1, now(), NULL, NULL, '');
  10. insert into sys_menu values('11629', '我发起的', '11618', '1', 'myDocument', 'workflow/task/myDocument', '', '1', '1', 'C', '0', '0', '', 'guide', 103, 1, now(), NULL, NULL, '');
  11. insert into sys_menu values('11630', '流程监控', '11616', '4', 'monitor', '', '', '1', '0', 'M', '0', '0', '', 'monitor', 103, 1, now(), NULL, NULL, '');
  12. insert into sys_menu values('11631', '待办任务', '11630', '2', 'allTaskWaiting', 'workflow/task/allTaskWaiting', '', '1', '1', 'C', '0', '0', '', 'waiting', 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. create table test_leave
  21. (
  22. id bigint not null
  23. constraint test_leave_pk
  24. primary key,
  25. leave_type varchar(255),
  26. start_date timestamp,
  27. end_date timestamp,
  28. leave_days bigint,
  29. remark varchar(255),
  30. status 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.status is '状态';
  45. comment on column test_leave.create_dept is '创建部门';
  46. comment on column test_leave.create_by is '创建者';
  47. comment on column test_leave.create_time is '创建时间';
  48. comment on column test_leave.update_by is '更新者';
  49. comment on column test_leave.update_time is '更新时间';
  50. comment on column test_leave.tenant_id is '租户编码';
  51. alter table test_leave
  52. owner to postgres;
  53. -- 流程分类信息表
  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 not null
  124. constraint pk_wf_definition_config
  125. primary key,
  126. table_name varchar(255) not null,
  127. definition_id varchar(255) not null,
  128. process_key varchar(255) not null,
  129. version bigint not null,
  130. tenant_id varchar(20),
  131. remark varchar(500),
  132. create_dept bigint,
  133. create_by bigint,
  134. create_time timestamp,
  135. update_by bigint,
  136. update_time timestamp
  137. );
  138. comment on table wf_definition_config is '流程定义配置';
  139. comment on column wf_definition_config.id is '主键';
  140. comment on column wf_definition_config.table_name is '表名';
  141. comment on column wf_definition_config.definition_id is '流程定义ID';
  142. comment on column wf_definition_config.process_key is '流程KEY';
  143. comment on column wf_definition_config.version is '流程版本';
  144. comment on column wf_definition_config.tenant_id is '租户id';
  145. comment on column wf_definition_config.remark is '备注';
  146. comment on column wf_definition_config.create_dept is '创建部门';
  147. comment on column wf_definition_config.create_by is '创建者';
  148. comment on column wf_definition_config.create_time is '创建时间';
  149. comment on column wf_definition_config.update_by is '修改者';
  150. comment on column wf_definition_config.update_time is '修改时间';
  151. alter table wf_definition_config
  152. owner to postgres;
  153. create unique index uni_definition_id
  154. on wf_definition_config (definition_id);
  155. create table wf_form_manage
  156. (
  157. id bigint not null
  158. constraint pk_wf_form_manage
  159. primary key,
  160. form_name varchar(255) not null,
  161. form_type varchar(255) not null,
  162. router varchar(255) not null,
  163. remark varchar(500),
  164. tenant_id varchar(20),
  165. create_dept bigint,
  166. create_by bigint,
  167. create_time timestamp,
  168. update_by bigint,
  169. update_time timestamp
  170. );
  171. comment on table wf_form_manage is '表单管理';
  172. comment on column wf_form_manage.id is '主键';
  173. comment on column wf_form_manage.form_name is '表单名称';
  174. comment on column wf_form_manage.form_type is '表单类型';
  175. comment on column wf_form_manage.router is '路由地址/表单ID';
  176. comment on column wf_form_manage.remark is '备注';
  177. comment on column wf_form_manage.tenant_id is '租户id';
  178. comment on column wf_form_manage.create_dept is '创建部门';
  179. comment on column wf_form_manage.create_by is '创建者';
  180. comment on column wf_form_manage.create_time is '创建时间';
  181. comment on column wf_form_manage.update_by is '修改者';
  182. comment on column wf_form_manage.update_time is '修改时间';
  183. insert into wf_form_manage(id, form_name, form_type, router, remark, tenant_id, create_dept, create_by, create_time, update_by, update_time) VALUES (1, '请假申请', 'static', '/workflow/leaveEdit/index', NULL, '000000', 103, 1, now(), 1, now());
  184. create table wf_node_config
  185. (
  186. id bigint not null
  187. constraint pk_wf_node_config
  188. primary key,
  189. form_id bigint,
  190. form_type varchar(255),
  191. node_name varchar(255) not null,
  192. node_id varchar(255) not null,
  193. definition_id varchar(255) not null,
  194. apply_user_task char(1) default '0',
  195. tenant_id varchar(20),
  196. create_dept bigint,
  197. create_by bigint,
  198. create_time timestamp,
  199. update_by bigint,
  200. update_time timestamp
  201. );
  202. comment on table wf_node_config is '节点配置';
  203. comment on column wf_node_config.id is '主键';
  204. comment on column wf_node_config.form_id is '表单id';
  205. comment on column wf_node_config.form_type is '表单类型';
  206. comment on column wf_node_config.node_id is '节点id';
  207. comment on column wf_node_config.node_name is '节点名称';
  208. comment on column wf_node_config.definition_id is '流程定义id';
  209. comment on column wf_node_config.apply_user_task is '是否为申请人节点 (0是 1否)';
  210. comment on column wf_node_config.tenant_id is '租户id';
  211. comment on column wf_node_config.create_dept is '创建部门';
  212. comment on column wf_node_config.create_by is '创建者';
  213. comment on column wf_node_config.create_time is '创建时间';
  214. comment on column wf_node_config.update_by is '修改者';
  215. comment on column wf_node_config.update_time is '修改时间';
  216. 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', 'workflow:leave:list', '#', 103, 1, now(), NULL, NULL, '请假申请菜单');
  217. 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', 'workflow:leave:query', '#', 103, 1, now(), NULL, NULL, '');
  218. 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', 'workflow:leave:add', '#', 103, 1, now(), NULL, NULL, '');
  219. 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', 'workflow:leave:edit', '#', 103, 1, now(), NULL, NULL, '');
  220. 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', 'workflow:leave:remove', '#', 103, 1, now(), NULL, NULL, '');
  221. 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', 'workflow:leave:export', '#', 103, 1, now(), NULL, NULL, '');
  222. INSERT INTO sys_dict_type(dict_id, tenant_id, dict_name, dict_type, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (13, '000000', '业务状态', 'wf_business_status', 103, 1, now(), NULL, NULL, '业务状态列表');
  223. INSERT INTO sys_dict_type(dict_id, tenant_id, dict_name, dict_type, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (14, '000000', '表单类型', 'wf_form_type', 103, 1, now(), NULL, NULL, '表单类型列表');
  224. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (39, '000000', 1, '已撤销', 'cancel', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已撤销');
  225. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (40, '000000', 2, '草稿', 'draft', 'wf_business_status', '', 'info', 'N', 103, 1, now(), NULL, NULL, '草稿');
  226. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (41, '000000', 3, '待审核', 'waiting', 'wf_business_status', '', 'primary', 'N', 103, 1,now(), NULL, NULL, '待审核');
  227. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (42, '000000', 4, '已完成', 'finish', 'wf_business_status', '', 'success', 'N', 103, 1, now(), NULL, NULL, '已完成');
  228. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (43, '000000', 5, '已作废', 'invalid', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已作废');
  229. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (44, '000000', 6, '已退回', 'back', 'wf_business_status', '', 'danger', 'N', 103, 1, now(), NULL, NULL, '已退回');
  230. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (45, '000000', 7, '已终止', 'termination', 'wf_business_status', '', 'danger', 'N', 103, 1,now(), NULL, NULL, '已终止');
  231. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (46, '000000', 1, '自定义表单', 'static', 'wf_form_type', '', 'success', 'N', 103, 1, now(), NULL, NULL, '自定义表单');
  232. INSERT INTO sys_dict_data(dict_code, tenant_id, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, create_dept, create_by, create_time, update_by, update_time, remark) VALUES (47, '000000', 2, '动态表单', 'dynamic', 'wf_form_type', '', 'primary', 'N', 103, 1, now(), NULL, NULL, '动态表单');
  233. -- 表单管理 SQL
  234. 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)
  235. values(11628, '表单管理', '11616', '5', 'formManage', 'workflow/formManage/index', 1, 0, 'C', '0', '0', 'workflow:formManage:list', 'tree-table', 103, 1, now(), null, null, '表单管理菜单');
  236. -- 表单管理按钮 SQL
  237. 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)
  238. values(11644, '表单管理查询', 11628, '1', '#', '', 1, 0, 'F', '0', '0', 'workflow:formManage:query', '', 103, 1, now(), null, null, '');
  239. 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)
  240. values(11645, '表单管理新增', 11628, '2', '#', '', 1, 0, 'F', '0', '0', 'workflow:formManage:add', '', 103, 1, now(), null, null, '');
  241. 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)
  242. values(11646, '表单管理修改', 11628, '3', '#', '', 1, 0, 'F', '0', '0', 'workflow:formManage:edit', '', 103, 1, now(), null, null, '');
  243. 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)
  244. values(11647, '表单管理删除', 11628, '4', '#', '', 1, 0, 'F', '0', '0', 'workflow:formManage:remove', '', 103, 1, now(), null, null, '');
  245. 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)
  246. values(11648, '表单管理导出', 11628, '5', '#', '', 1, 0, 'F', '0', '0', 'workflow:formManage:export', 'tree-table', 103, 1, now(), null, null, '');