自动化立体仓库 - WMS系统
lsh
2024-08-21 f72b0dc0ae80fee81a7a678deb0e3d97f89a0e1b
src/main/java/com/zy/asrs/entity/WaitPakin.java
@@ -167,6 +167,10 @@
    @ApiModelProperty(value= "客户信息ID")
    private Long owner;
    @ApiModelProperty(value= "物料类型")
    @TableField("mat_type_In")
    private Integer matTypeIn;
    public String getBeBatch$(){
        if (null == this.beBatch){ return null; }
        switch (this.beBatch){
@@ -260,4 +264,20 @@
                return "";
        }
    }
    public String getMatTypeIn$() {
        if (this.matTypeIn == null) {
            return "默认";
        }
        switch (this.matTypeIn) {
            case 1:
                return "单品";
            case 2:
                return "高频";
            case 3:
                return "混放";
            default:
                return "默认";
        }
    }
}