自动化立体仓库 - WMS系统
#
18516761980
2022-10-08 6c79b10d6271fd218dbcdc2b9648a5b80361471d
src/main/java/com/zy/asrs/entity/TestMast.java
@@ -27,7 +27,7 @@
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    @ApiModelProperty(value= "")
    @ApiModelProperty(value= "通道")
    private Integer channel;
    /**
@@ -53,7 +53,7 @@
    /**
     * 状态 0: 待申请  1: 申请中  2: 已复核;3  4: 完成  
     */
    @ApiModelProperty(value= "状态 0: 待申请  1: 申请中  2: 已复核 3: 测试中  4: 完成  ")
    @ApiModelProperty(value= "状态 0: 暂停  1: 申请中  2: 复核中  3: 测试中  4: 完成  5.已移库")
    private Integer status;
    /**
@@ -99,15 +99,17 @@
        if (null == this.status){ return null; }
        switch (this.status){
            case 0:
                return "待申请";
                return "暂停";
            case 1:
                return "申请中";
            case 2:
                return "已复核";
                return "复核中";
            case 3:
                return "测试中";
            case 4:
                return "完成";
            case 5:
                return "已移库";
            default:
                return String.valueOf(this.status);
        }