KKSU
2023-12-13 5061a16c2b9d5d5c22516b69460e04c3f1484dea
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;
    }
}