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
| package com.sandu.ximon.dao.enums;
|
| public enum OrderStatus {
| // 未支付
| NO_PAY(0),
|
|
| // 已支付
| PAYED(1),
|
|
| // 已退款
| REFUND(3),
|
|
| // 退款中
| REFUNDING(2),
|
|
| // 退款失败
| REFUND_FAILED(5),
| // 已完成
| COMPLETE(4),
|
| //已取消
| CANCEL(-1);;
|
| private Integer status;
|
| public Integer getStatus() {
| return status;
| }
|
| OrderStatus(Integer status) {
| this.status = status;
| }
|
| }
|
|