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
| package cn.lili.modules.order.order.entity.enums;
|
| /**
| * 评论状态枚举
| *
| * @author Chopper
| * @since 2020/11/17 7:25 下午
| */
| public enum CommentStatusEnum {
|
| /**
| * 新订单,不能进行评论
| */
| NEW("新订单,不能进行评论"),
| /**
| * 未完成的评论
| */
| UNFINISHED("未完成评论"),
|
| /**
| * 待追评的评论信息
| */
| WAIT_CHASE("待追评评论"),
|
| /**
| * 已经完成评论
| */
| FINISHED("已经完成评论");
|
| private final String description;
|
| CommentStatusEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return this.description;
| }
|
| }
|
|