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.order.order.entity.enums;
|
| /**
| * 订单可申请售后状态枚举
| *
| * @author Chopper
| * @since 2020/11/17 7:26 下午
| */
| public enum OrderItemAfterSaleStatusEnum {
|
| /**
| * 订单申请售后状态
| */
| NEW("新订单,不能申请售后"),
| NOT_APPLIED("未申请"),
| PART_AFTER_SALE("部分售后"),
| ALREADY_APPLIED("全部售后"),
| EXPIRED("已失效不允许申请售后");
|
|
|
| private final String description;
|
| OrderItemAfterSaleStatusEnum(String description) {
| this.description = description;
| }
|
| public String description() {
| return this.description;
| }
|
| }
|
|