package com.qianwen.smartman.modules.cps.enums;
|
|
import com.qianwen.smartman.common.constant.MachineConstant;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/enums/WorkstationTypeEnum.class */
|
public enum WorkstationTypeEnum {
|
MACHINE(0, MachineConstant.TYPE_MACHINE),
|
ARTIFICIAL(1, MachineConstant.TYPE_HUMAN);
|
|
private final Integer code;
|
private final String desc;
|
|
WorkstationTypeEnum(final Integer code, final String desc) {
|
this.code = code;
|
this.desc = desc;
|
}
|
|
public Integer getCode() {
|
return this.code;
|
}
|
|
public String getDesc() {
|
return this.desc;
|
}
|
}
|