1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.qianwen.smartman.modules.cps.enums;
|
| /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/WorkstationPropertiesEnum.class */
| public enum WorkstationPropertiesEnum {
| MACHINE(0, "单主轴加工"),
| ARTIFICIAL(1, "双主轴加工");
|
| private final Integer code;
| private final String desc;
|
| WorkstationPropertiesEnum(final Integer code, final String desc) {
| this.code = code;
| this.desc = desc;
| }
|
| public Integer getCode() {
| return this.code;
| }
|
| public String getDesc() {
| return this.desc;
| }
| }
|
|