KKSU
2024-06-27 cd59cd93b4eceee7b5f948a19d4e78371348fcd0
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
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
/**
 *
 * @author wzy
 * @date 2021-09-24
 **/
@Getter
public enum GameFlowTypeEnum {
    PLAYER_WITHDRAW_NO(6,"提现失败"),
    PLAYER_WITHDRAW(5,"提现至:{},手续费:{}"),
    PLAYER_CHARGE(4,"充值"),
    OWNER_PERK(3,"开奖结果:{},{}"),
    PLAYER_PERK(2,"开奖结果:{},{},您的选择:{}"),
    PLAYER_PICK_NUM(1,"房间:{},选择:{}");
 
    private int value;
    private String descrition;
 
    GameFlowTypeEnum(int value, String descrition) {
        this.value = value;
        this.descrition = descrition;
    }
}