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