1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.ruoyi.order.enums;
|
| import com.ruoyi.order.enums.dict.IDict;
|
| public enum RefundStatusEnum implements IDict<Integer> {
| /**
| * 退款状态,枚举值:
| * SUCCESS:退款成功
| * CLOSE:退款关闭
| * ABNORMAL:退款异常
| */
| SUCCESS(2, "SUCCESS"),
| CLOSE(3, "CLOSE"),
| ABNORMAL(4, "ABNORMAL");
|
| RefundStatusEnum(Integer code, String text){
| init(code, text);
| }
| }
|
|