package com.newfiber.modules.inspection.enums; public enum EInspectionInfoSource { /** *来源(手动manual/排班表schedule) */ MANUAL("manual","手动"), SCHEDULE("schedule","排班表") ; private String key; private String value; public String getKey() { return key; } public void setKey(String key) { this.key = key; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } EInspectionInfoSource(String key, String value) { this.key = key; this.value = value; } }