郑永安
2023-08-30 af0956c9c4e28a80a81b6707bc2224fc01360bf7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.gk.hotwork.Domain.Enum;
 
import com.fasterxml.jackson.annotation.JsonValue;
 
public enum SourceType {
 
    WEB("WEB","网页"),
    APP("APP","安卓");
 
 
    SourceType(String code, String msg) {
        this.code = code;
        this.msg = msg;
    }
 
    String code;
    @JsonValue
    String msg;
}