仿钉钉流程设计- 流程抄送增加流程活动 Id 字段

This commit is contained in:
jason
2024-08-25 23:06:08 +08:00
parent dd0bba4752
commit 6b0520d779
6 changed files with 23 additions and 9 deletions

6
sql/mysql/bpm_update.sql Normal file
View File

@ -0,0 +1,6 @@
-- ----------------------------
-- 流程抄送表新加流程活动编号
-- ----------------------------
ALTER TABLE `pro-test`.`bpm_process_instance_copy`
ADD COLUMN `activity_id` varchar(64) NULL COMMENT '流程活动编号' AFTER `category`,
MODIFY COLUMN `task_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '任务编号' AFTER `category`;