From fb2efa6aa01ae3a1dbf7694c20f8eca4edc52b5f Mon Sep 17 00:00:00 2001 From: efren <79289982@qq.com> Date: Thu, 7 Aug 2025 16:21:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=81=E7=A8=8B=E5=AE=A1=E6=89=B9=E4=B8=9A?= =?UTF-8?q?=E5=8A=A1=E7=B1=BB=E5=9E=8B=E6=9E=9A=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../workflow/constant/BusinessTypeEnum.java | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/workflow/constant/BusinessTypeEnum.java diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/workflow/constant/BusinessTypeEnum.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/workflow/constant/BusinessTypeEnum.java new file mode 100644 index 0000000..88cec94 --- /dev/null +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/workflow/constant/BusinessTypeEnum.java @@ -0,0 +1,20 @@ +package com.chinaunicom.mall.ebtp.common.workflow.constant; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +/** + * 流程审批业务类型枚举 + */ +@Getter +@AllArgsConstructor +public enum BusinessTypeEnum { + + CATEGORY_LIBRARY_APPROVAL("categoryLibraryApproval", "品类库审批"), + ACCESS_APPROVAL("accessApproval", "准入审批"), + EVALUATION_APPROVAL("evaluationApproval", "评价审批"), + ANNUAL_REVIEW_APPROVAL("annualReviewApproval", "年审审批"); + + private final String key; + private final String desc; +}