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 org.jeecg.modules.dnc.constant;
|
| public enum DocAttributionTypeEnum {
|
| PRODUCT(1, "产品"),
| COMPONENT(2, "部件/子部件"),
| PARTS(3, "零件"),
| OPERATION(4, "工艺规程版本"),
| PROCESS(5, "工序"),
| WORKSITE(6, "工步"),
| DEVICE(7, "设备");
|
| private Integer code;
| private String name;
|
| public String getName() {
| return name;
| }
|
| public void setName(String name) {
| this.name = name;
| }
|
| public Integer getCode() {
| return code;
| }
|
| public void setCode(Integer code) {
| this.code = code;
| }
|
| DocAttributionTypeEnum() {
| }
|
| DocAttributionTypeEnum(Integer code, String name) {
| this.code = code;
| this.name = name;
| }
| }
|
|