自动化立体仓库 - WMS系统
whycq
2023-08-26 82bcd0328dddbaad65933e2fada22bc68e82b3d5
src/main/java/com/zy/asrs/entity/WaitPakin.java
@@ -155,6 +155,13 @@
    @ApiModelProperty(value= "是否冻结")
    private Integer frozen;
    /**
     * 物料类型{1:单品,2:高频,3:混放}
     */
    @ApiModelProperty(value= "物料类型")
    @TableField("mat_type")
    private Integer matType;
    public String getBeBatch$(){
        if (null == this.beBatch){ return null; }
        switch (this.beBatch){
@@ -222,4 +229,20 @@
    public void sync(Object source) {
        Synchro.Copy(source, this);
    }
    public String getMatType$() {
        if (this.matType == null) {
            return "";
        }
        switch (this.matType) {
            case 1:
                return "单品";
            case 2:
                return "高频";
            case 3:
                return "混放";
            default:
                return "";
        }
    }
}