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
| package cn.lili.modules.promotion.entity.enums;
|
| /**
| * 秒杀活动状态枚举
| *
| * @author paulG
| * @since 2020/8/26
| **/
| public enum SeckillApplyStatusEnum {
|
| /**
| * 当前店铺对当前秒杀活动的申请状态
| */
| APPLIED("已经申请过"), NOT_APPLY("未报名"), EXPIRE("过期的");
|
| private final String description;
|
| SeckillApplyStatusEnum(String str) {
| this.description = str;
| }
|
| public String description() {
| return description;
| }
|
| }
|
|