自动化立体仓库 - WCS系统
#
luxiaotao1123
2022-12-01 16fccfe881459f27f1549d35f19e05333e606a45
src/main/java/com/zy/asrs/entity/WrkMast.java
@@ -74,6 +74,13 @@
    @TableField("ste_no")
    private Integer steNo;
    /**
     * 边缘库位
     */
    @ApiModelProperty(value= "边缘库位")
    @TableField("out_most")
    private Integer outMost;
    @ApiModelProperty(value= "")
    @TableField("sheet_no")
    private String sheetNo;
@@ -491,4 +498,16 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.logErrTime);
    }
    public String getOutMost$() {
        if (null == this.outMost){ return null; }
        switch (this.outMost){
            case 1:
                return "边缘库位";
            case 0:
                return "内联库位";
            default:
                return String.valueOf(this.outMost);
        }
    }
}