自动化立体仓库 - WMS系统
野心家
2025-04-28 9ac70efe81c1909d63b89f9b18c4f367c0584ceb
src/main/java/com/zy/asrs/entity/TestMast.java
@@ -22,6 +22,8 @@
    /**
     * 编号
     *
     *
     */
    @ApiModelProperty(value= "编号")
    @TableId(value = "id", type = IdType.AUTO)
@@ -51,7 +53,7 @@
    private String userId;
    /**
     * 状态 0: 待申请  1: 申请中  2: 已复核;3  4: 完成
     * 测试状态 0:暂停;1:申请中;2:已复核;3测试中;4:完成;5已移库;
     */
    @ApiModelProperty(value= "状态 0: 暂停  1: 申请中  2: 复核中  3: 测试中  4: 完成  5.已移库")
    private Integer status;
@@ -99,15 +101,15 @@
        if (null == this.status){ return null; }
        switch (this.status){
            case 0:
                return "暂停";
                return "空闲";
            case 1:
                return "申请中";
                return "待测";
            case 2:
                return "复核中";
            case 3:
                return "测试中";
            case 4:
            case 3:
                return "完成";
            case 4:
                return "失败";
            case 5:
                return "已移库";
            default: