自动化立体仓库 - WMS系统
whycq
2023-11-14 e3b9215ac5e9e2f430c3fe356549f18363d6dd6a
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 "默认";
        }
    }
}