郑永安
2023-06-19 59e91a4e9ddaf23cebb12993c774aa899ab22d16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.gk.firework.Domain.Enum;
 
import com.fasterxml.jackson.annotation.JsonValue;
 
import java.io.Serializable;
 
public enum CertificatePersonType {
 
    DRIVER("DRIVER", "驾驶员"),
    ESCORT("ESCORT", "押运员"),;
 
    private String code;
 
    private String msg;
 
    CertificatePersonType(String code, String msg) {
        this.code = code;
        this.msg = msg;
    }
 
    public String getCode() {
        return code;
    }
    @JsonValue
    public String getMsg() {
        return msg;
    }
 
 
 
    public static CertificatePersonType parse(String code){
        for(CertificatePersonType cs:CertificatePersonType.values()){
            if(cs.getCode().equals(code)){
                return cs;
            }
        }
        return null;
    }
 
 
}