package org.jeecg.modules.dry.common; import java.util.HashMap; import java.util.Map; public class CommonDict { /** * 故障字典 */ public static Map faultDict = new HashMap<>(); /** * 报警字典 */ public static Map waringDict = new HashMap<>(); /** * 状态字典 */ public static Map statusDict = new HashMap<>(); }