1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| /*
| * Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
| *
| * https://www.mall4j.com/
| *
| * 未经允许,不可做商业用途!
| *
| * 版权所有,侵权必究!
| */
| package com.yami.trading.security.common.enums;
|
| /**
| * 系统类型
| * @author 菠萝凤梨
| * @date 2022/3/25 17:33
| */
| public enum SysTypeEnum {
|
| /**
| * 普通用户系统
| */
| ORDINARY(0),
|
| /**
| * 后台
| */
| ADMIN(1),
| ;
|
| private final Integer value;
|
| public Integer value() {
| return value;
| }
|
| SysTypeEnum(Integer value) {
| this.value = value;
| }
|
| }
|
|