对比新文件 |
| | |
| | | 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; |
| | | } |
| | | } |
| | | |
| | | |
| | | } |