feat: BPM-更多设置-自动去重

This commit is contained in:
Lesan
2025-01-21 08:25:09 +08:00
parent 187fa08524
commit 0f58e968b1
3 changed files with 29 additions and 1 deletions

View File

@ -457,3 +457,9 @@ export const BpmProcessInstanceStatus = {
REJECT: 3, // 审批不通过
CANCEL: 4 // 已取消
}
export const BpmAutoApproveType = {
NONE: 1, // 不自动通过
APPROVE_ALL: 2, // 仅审批一次,后续重复的审批节点均自动通过
APPROVE_SEQUENT: 3, // 仅针对连续审批的节点自动通过
}