1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package cn.lili.common.enums;
|
| import lombok.Getter;
|
| @Getter
| public enum ActivityStatusEnum {
| NOT_STARTED("未开始"),
| REPORT("报名中"),
| IN_PROGRESS("进行中"),
| ENDED("已结束");
|
| private String type;
|
| ActivityStatusEnum(String type) {
| this.type = type;
|
| }
|
|
| }
|
|