1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| 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;
| }
| }
|
|