自动化立体仓库 - WMS系统
1
ZY
2024-10-29 52f2306fe8e8f0760b32f33371adf4037e031bcf
src/main/java/com/zy/asrs/entity/AgvWaitPakin.java
@@ -16,7 +16,7 @@
public class AgvWaitPakin implements Serializable {
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value= "托盘条码")
    @ApiModelProperty(value= "货架条码")
    private String zpallet;
    @ApiModelProperty(value= "数量")
@@ -155,6 +155,29 @@
    @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){
@@ -219,6 +242,18 @@
        }
    }
    public String getIoStatus$(){
        if (null == this.ioStatus){ return null; }
        switch (this.ioStatus){
            case "N":
                return "未入库";
            case "Y":
                return "入库中";
            default:
                return this.ioStatus;
        }
    }
    public String getModiTime$(){
        if (Cools.isEmpty(this.modiTime)){
            return "";