自动化立体仓库 - WMS系统
zhangc
2024-12-25 aa3476e8ff45d168f0bb9376ed3a114610a65f12
src/main/java/com/zy/asrs/entity/AgvWaitPakinLog.java
@@ -151,6 +151,33 @@
    @ApiModelProperty(value= "备注")
    private String memo;
    @ApiModelProperty(value= "货位类型 1: 待包装成品  2: 原材料  3:箱壳")
    @TableField("loc_type")
    private Integer locType;
    /**
     * 工序状态
     */
    @ApiModelProperty(value= "工序状态 1:待加工,2:已加工,3:无需加工")
    @TableField("process_sts")
    private Integer processSts;
    public String getProcessSts$(){
        if (null == this.processSts){ return null; }
        switch (this.processSts){
            case 0:
                return "其他";
            case 1:
                return "待加工";
            case 2:
                return "已加工";
            case 3:
                return "无需加工";
            default:
                return String.valueOf(this.processSts);
        }
    }
    public String getBeBatch$(){
        if (null == this.beBatch){ return null; }
        switch (this.beBatch){
@@ -163,6 +190,20 @@
        }
    }
    public String getLocType$(){
        if (null == this.locType){ return null; }
        switch (this.locType){
            case 1:
                return "待包装成品";
            case 2:
                return "原材料";
            case 3:
                return "箱壳";
            default:
                return String.valueOf(this.locType);
        }
    }
    public String getSource$(){
        if (null == this.source){ return null; }
        switch (this.source){