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