自动化立体仓库 - WCS系统
Junjie
2023-06-19 936a3f961de4e7de9e2b28d6cb36dadb1efa57e1
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;
@@ -302,7 +309,7 @@
    @ApiModelProperty(value= "")
    @TableField("Pdc_type")
    private String PdcType;
    private String pdcType;
    @ApiModelProperty(value= "")
    @TableField("ctn_no")
@@ -314,6 +321,13 @@
    @ApiModelProperty(value= "满板")
    @TableField("full_plt")
    private String fullPlt;
    /**
     * 四向穿梭车号
     */
    @ApiModelProperty(value= "四向穿梭车号")
    @TableField("shuttle_no")
    private Integer shuttleNo;
    public String getWrkSts$(){
        BasWrkStatusMapper mapper = SpringUtils.getBean(BasWrkStatusMapper.class);
@@ -491,4 +505,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);
        }
    }
}