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
| package cn.lili.modules.goods.entity.enums;
|
| /**
| * 商品审核
| *
| * @author pikachu
| * @since 2020-02-26 23:24:13
| */
| public enum GoodsAuthEnum {
| /**
| * 需要审核 并且待审核
| */
| TOBEAUDITED("待审核"),
| /**
| * 审核通过
| */
| PASS("审核通过"),
| /**
| * 审核通过
| */
| REFUSE("审核拒绝");
|
| private final String description;
|
| GoodsAuthEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return description;
| }
| }
|
|