xiaoyi
3 天以前 abf1c0a35d85d38239ff5d2ed746a4e4b797c9d1
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/enums/pro/MesProWorkOrderSourceTypeEnum.java
@@ -9,14 +9,15 @@
/**
 * MES 工单来源类型枚举
 *
 * @author 芋道源码
 * @author 超级管理员
 */
@Getter
@AllArgsConstructor
public enum MesProWorkOrderSourceTypeEnum implements ArrayValuable<Integer> {
    ORDER(1, "客户订单"),
    STORE(2, "库存备货");
    STORE(2, "库存备货"),
    MAINTENANCE_PLAN(3, "运维计划");
    public static final Integer[] ARRAYS = Arrays.stream(values()).map(MesProWorkOrderSourceTypeEnum::getType).toArray(Integer[]::new);