package org.jeecg.modules.dry.common; public interface CacheConstants { enum RedisKeyEnum{ WORK_ORDER("workOrder","工单MAP"); private String code; private String text; RedisKeyEnum(String code, String text) { this.code = code; this.text = text; } public String getCode() { return code; } public String getText() { return text; } } }