Compare commits
4 Commits
5858237193
...
8b29639e7c
Author | SHA1 | Date |
---|---|---|
![]() |
8b29639e7c | |
![]() |
3eeee80aaf | |
![]() |
3147d1ea2e | |
![]() |
eb97a398fe |
|
@ -425,7 +425,7 @@ public class ActHistoryService {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
logger.info("不存在正在进行流程节点");
|
logger.info("不存在正在进行流程节点:" + index.getProcessInstanceId());
|
||||||
index.setAllowReminders(Boolean.FALSE);
|
index.setAllowReminders(Boolean.FALSE);
|
||||||
index.setDoneReminders(Boolean.FALSE);
|
index.setDoneReminders(Boolean.FALSE);
|
||||||
index.setNextRemindersDays(0);
|
index.setNextRemindersDays(0);
|
||||||
|
|
|
@ -8,7 +8,7 @@ create TABLE `sys_audit_team` (
|
||||||
`name` longtext NOT NULL comment '审核组名称',
|
`name` longtext NOT NULL comment '审核组名称',
|
||||||
`member` json NOT NULL comment '审核组成员id数组',
|
`member` json NOT NULL comment '审核组成员id数组',
|
||||||
`index` varchar(255) NULL comment '审核组索引',
|
`index` varchar(255) NULL comment '审核组索引',
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`)
|
||||||
INDEX `name`(`name`) USING BTREE comment '审核组名称索引'
|
|
||||||
) comment = '流程审核组组员';
|
) comment = '流程审核组组员';
|
||||||
|
alter table `sys_audit_team` ADD INDEX `name_`(`name`) USING BTREE comment '审核组名称索引';
|
||||||
SET FOREIGN_KEY_CHECKS = 1;
|
SET FOREIGN_KEY_CHECKS = 1;
|
Loading…
Reference in New Issue