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