package com.zt.life.core.enums; import com.zt.common.constant.IDictionary; /** * 公司类别 * * @author hehz * @since 1.0.0 */ //@Dictionary(type = "company_type", name = "公司类别") public enum CompanyType implements IDictionary { YJS(1, "研究所"), CJ(2, "厂家"), T(3, "T"), BZB(4, "保障部"), HJJG(5, "HJJG"), TD(6, "T队"), HJD(7, "汇节点"); private Integer value; private String name; CompanyType(int value, String name) { this.value = value; this.name = name; } @Override public Integer getValue() { return value; } @Override public String getName() { return name; } }