fix
Helius
2022-05-10 5d17f725bb5bb51108aaba4230b5a0e5789a825d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cc.mrbird.febs.common.enumerates;
 
import lombok.Data;
import lombok.Getter;
 
@Getter
public enum DataDictionaryEnum {
 
    SCORE_SIGN_SETTING("SCORE_SETTING", "SCORE_SIGN_SETTING");
 
    private String type;
 
    private String code;
 
    DataDictionaryEnum(String type, String code) {
        this.type = type;
        this.code = code;
    }
}