package com.zy.core.enums; //货叉提升机出入库模式 public enum ForkLiftIoModeType { NONE(0, "未知"), IN(1, "入库"), OUT(2, "出库"), ; public Integer id; public String desc; ForkLiftIoModeType(Integer id, String desc) { this.id = id; this.desc = desc; } public static ForkLiftIoModeType get(Integer id) { if (null == id) { return null; } for (ForkLiftIoModeType type : ForkLiftIoModeType.values()) { if (type.id.equals(id)) { return type; } } return null; } public static ForkLiftIoModeType get(ForkLiftIoModeType type) { if (null == type) { return null; } for (ForkLiftIoModeType type2 : ForkLiftIoModeType.values()) { if (type2 == type) { return type2; } } return null; } }