1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package cc.mrbird.febs.dapp.enumerate;
|
| import lombok.Getter;
|
| /**
| * 流水类型
| */
| @Getter
| public enum FundFlowEnum {
| //赠送积分
| PAY_ORDER("PAY_ORDER", 2),
| //赠送积分
| DONATE_SCORE("DONATE_SCORE", 1);
|
| private String type;
|
| private int code;
|
| FundFlowEnum(String type, int code) {
| this.type = type;
| this.code = code;
| }
| }
|
|