package com.qianwen.smartman.modules.system.enums; public enum ParamKeyEnum { Theme("system.theme"); private final String code; ParamKeyEnum(final String code) { this.code = code; } public String getCode() { return this.code; } }