KKSU
2024-03-18 a580b5a79d7d00872455d5d12c4e15b0aaac224c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
@Getter
public enum FlowTypeNewEnum {
 
    GSD(4,"GFD"),
    NFT(3,"NFT"),
    TOKEN(2,"门票"),
    FCM_COIN(1,"GFA代币")//
    ;
 
    private int value;
    private String description;
 
    FlowTypeNewEnum(int value,String description) {
        this.value = value;
        this.description = description;
    }
}