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
39
40
41
42
43
44
45
| package cc.mrbird.febs.dapp.enumerate;
|
| import lombok.Getter;
|
| /**
| * 流水类型
| */
| @Getter
| public enum FundFlowEnum {
| //团队静态收益
| TEAM_PERK_V7("TEAM_PERK_V7", 13),
| //团队静态收益
| TEAM_PERK_V6("TEAM_PERK_V6", 12),
| //团队静态收益
| TEAM_PERK_V5("TEAM_PERK_V5", 11),
| //团队静态收益
| TEAM_PERK_V4("TEAM_PERK_V4", 10),
| //团队静态收益
| TEAM_PERK_V3("TEAM_PERK_V3", 9),
| //团队静态收益
| TEAM_PERK_V2("TEAM_PERK_V2", 8),
| //团队静态收益
| TEAM_PERK_V1("TEAM_PERK_V1", 7),
| //直推
| DIRECT_AMOUNT("DIRECT_AMOUNT", 6),
| //增加余额
| ADD_AMOUNT("ADD_AMOUNT", 5),
| //减少赠送积分
| REDUCE_SCORE("REDUCE_SCORE", 4),
| //静态补贴
| STATIC_RELEASE("STATIC_RELEASE", 3),
| //支付订单
| 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;
| }
| }
|
|