|
|
@@ -16,7 +16,13 @@ public enum UserTypeEnum implements ArrayValuable<Integer> {
|
|
|
|
|
|
MEMBER(1, "会员"), // 面向 c 端,普通用户
|
|
|
ADMIN(2, "管理员"), // 面向 b 端,管理后台
|
|
|
- APP_CLIENT(3, "APP客户端"); // 面向 b 端,管理后台
|
|
|
+ // 面向 b 端,管理后台
|
|
|
+ APP_CLIENT(3, "APP客户端"),
|
|
|
+
|
|
|
+ PLATFORM_USE_UNIT(10, "服务平台使用单位"),
|
|
|
+ PLATFORM_MAKE_UNIT(11, "服务平台制造单位"),
|
|
|
+ PLATFORM_SUPERVISION_UNIT(12, "服务平台监督单位"),
|
|
|
+ ; // 面向 b 端,管理后台
|
|
|
|
|
|
public static final Integer[] ARRAYS = Arrays.stream(values()).map(UserTypeEnum::getValue).toArray(Integer[]::new);
|
|
|
|