package com.qianwen.smartman.modules.tpm.enums; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/enums/AffectEnum.class */ public enum AffectEnum { A1(1, "是"), A2(2, "否"); private final int type; private final String desc; AffectEnum(final int type, final String desc) { this.type = type; this.desc = desc; } public int getType() { return this.type; } public String getDesc() { return this.desc; } public static AffectEnum of(Integer type) { if (type == null) { return null; } AffectEnum[] values = values(); for (AffectEnum affectEnum : values) { if (affectEnum.type == type.intValue()) { return affectEnum; } } return null; } }