KKSU
2024-02-20 d6ed2678974b2750fd3b552cd607f487fbac0927
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
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
/**
 *
 * 1-静态收益 2-直推奖 3-代理收益 4-排名收益 5-总监收益 6-社区点补 7-一代收益 8-提现 9-转增 10-支付 11-退款
 * @author wzy
 * @date 2021-09-24
 **/
@Getter
public enum MoneyFlowTypeNewEnum {
    STATIC_BONUS(1,"投注"),
    DYNAMIC_ACHIEVE(2,"中奖"),
    AGENT_BONUS(3,"充值"),
    RANK_BONUS(4,"提现");
 
    private final int value;
    private final String description;
 
    MoneyFlowTypeNewEnum(int value,String description) {
        this.value = value;
        this.description = description;
    }
}