package org.jeecg.modules.dry.common; import org.jeecg.modules.dry.vo.DryFault; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public interface CacheConstants { enum RedisKeyEnum{ WORK_ORDER("workOrder","工单MAP"), EQP_MAP("eqpMap", "设备MAP,key:tenantId+equipmentId"); 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; } } }