Merge branch 'master' into docker_package

This commit is contained in:
wangliwen 2022-12-12 10:04:50 +08:00
commit 8b29639e7c
2 changed files with 3 additions and 3 deletions

View File

@ -425,7 +425,7 @@ public class ActHistoryService {
}
}
} else {
logger.info("不存在正在进行流程节点");
logger.info("不存在正在进行流程节点:" + index.getProcessInstanceId());
index.setAllowReminders(Boolean.FALSE);
index.setDoneReminders(Boolean.FALSE);
index.setNextRemindersDays(0);

View File

@ -8,7 +8,7 @@ create TABLE `sys_audit_team` (
`name` longtext NOT NULL comment '审核组名称',
`member` json NOT NULL comment '审核组成员id数组',
`index` varchar(255) NULL comment '审核组索引',
PRIMARY KEY (`id`),
INDEX `name`(`name`) USING BTREE comment '审核组名称索引'
PRIMARY KEY (`id`)
) comment = '流程审核组组员';
alter table `sys_audit_team` ADD INDEX `name_`(`name`) USING BTREE comment '审核组名称索引';
SET FOREIGN_KEY_CHECKS = 1;