package com.qianwen.smartman.modules.smis.enums; public enum ProcessTypeEnum { OTHER(0, "其他"), MARKING(1, "打标"), MEASUREMENT(2, "测量"), CLEANING(3, "清洗"), LOADING(4, "装卸"), PROCESSING(5, "加工"), CARRY(6, "搬运"), THREE_COORDINATES(7, "三坐标"); private final Integer type; private final String desc; ProcessTypeEnum(final Integer type, final String desc) { this.type = type; this.desc = desc; } public Integer getType() { return this.type; } public String getDesc() { return this.desc; } }