1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package cn.lili.modules.order.order.entity.enums;
|
| /**
| * 分账状态 枚举
| */
| public enum ProfitSharingStatusEnum {
| ORDER_CANCEL("订单取消"),
| WAIT_COMPLETE("待订单完成"),
| PROCESSING("处理中"),
| FINISHED("分账完成");
| // FAIL("分账失败"),
| // ARTIFICIAL("人工处理");
| private String description;
|
| ProfitSharingStatusEnum(String description) {
| this.description = description;
| }
|
| public String getDescription() {
| return description;
| }
| }
|
|