KKSU
2023-12-13 81431a597324933b0cee2da494b5c947a82d8055
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.common.enumerates;
 
import lombok.Getter;
 
@Getter
public enum FlowTypeNewEnum {
 
    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;
    }
}