diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/EbtpRoleEnum.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/EbtpRoleEnum.java new file mode 100644 index 0000000..ae4a731 --- /dev/null +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/constant/EbtpRoleEnum.java @@ -0,0 +1,30 @@ +package com.chinaunicom.mall.ebtp.common.constant; + +public enum EbtpRoleEnum { + + + PURCHASE_MANAGER("ebtp-purchase", "采购经理"), + + AGENCY_ADMIN("ebtp-agency-admin", "代理机构管理员"), + + AGENCY_SUB_ADMIN("ebtp-agency-sub-admin", "代理机构子管理员"), + + AGENCY_PROJECT_MANAGER("ebtp-agency-project-manager", "代理机构项目经理"), + + EXPERT("ebtp-expert", "专家"), + + SUPPLIER("ebtp-supplier", "供应商"); + + + private String role; + + private String desc; + + private EbtpRoleEnum(String role, String desc) { + + this.role = role; + this.desc = desc; + } + + +}