KKSU
2023-12-18 48e7106cc9c2911119f53829b3b2e858d80d8770
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;
    }
}