package com.gkhy.hazmat.common.enums; /** * 入库状态 * */ public enum EntryStateEnum { UNENTER(0, "未入库"),ENTER(1, "已入库"); private final Integer code; private final String info; EntryStateEnum(Integer code, String info) { this.code = code; this.info = info; } public Integer getCode() { return code; } public String getInfo() { return info; } }