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
41
42
43
44
45
46
47
| package cn.lili.modules.order.order.entity.enums;
|
| /**
| * 订单的投诉状态
| *
| * @author paulG
| * @since 2020/12/5
| **/
| public enum OrderComplaintStatusEnum {
|
| /**
| * 新订单,不能申请投诉
| */
| NEW("待审核"),
| /**
| * 未申请
| */
| NO_APPLY("未申请"),
| /**
| * 申请中
| */
| APPLYING("申请中"),
| /**
| * 已完成
| */
| COMPLETE("已完成"),
| /**
| * 已失效
| */
| EXPIRED("已失效"),
| /**
| * 取消
| */
| CANCEL("取消");
|
| private final String description;
|
| OrderComplaintStatusEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return this.description;
| }
|
|
| }
|
|