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;
| }
|
|