自动化立体仓库 - WMS系统
Junjie
2023-05-26 6a9b23334a99483ffdab9bbcf3a29eb830b3d77a
src/main/java/com/zy/asrs/entity/Mat.java
@@ -337,6 +337,12 @@
    @TableField("inout_everyday")
    private Boolean inoutEveryday;
    /**
     * 物料类型{1:单品,2:高频,3:混放}
     */
    @ApiModelProperty(value= "物料类型")
    @TableField("mat_type")
    private Integer matType;
    public Mat() {}
@@ -559,4 +565,20 @@
        }
    }
    public String getMatType$() {
        if (this.matType == null) {
            return "";
        }
        switch (this.matType) {
            case 1:
                return "单品";
            case 2:
                return "高频混放";
            case 3:
                return "低频混放";
            default:
                return "";
        }
    }
}