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
| package cn.lili.modules.system.entity.enums;
|
|
| /**
| * app类型 安卓 IOS
| *
| * @author Chopper
| * @since 2020/9/11 17:03
| */
| public enum AppType {
|
| /**
| * IOS
| */
| IOS("IOS"),
| /**
| * 安卓
| */
| ANDROID("安卓");
|
| private final String description;
|
| AppType(String description) {
| this.description = description;
|
| }
|
| public String getDescription() {
| return description;
| }
|
| public String description() {
| return this.description;
| }
|
| }
|
|