自动化立体仓库 - WCS系统
野心家
5 天以前 3d2a161ca245484a3162b439cadf348b2f3a75fa
src/main/java/com/zy/asrs/entity/TestMast.java
@@ -56,9 +56,9 @@
    private String userId;
    /**
     * 状态 0: 待申请  1: 申请中  2: 已复核;3.测试中;4
     * 状态 0: 无货  1: 等待测试 2:测试中 3.测试完成;4.测试失败;
     */
    @ApiModelProperty(value= "状态 0: 待申请  1: 申请中  2: 已复核 3:测试中 4:完成")
    @ApiModelProperty(value= "状态 0: 无货  1: 等待测试 2:测试中 3.测试完成;4.测试失败; ")
    private Integer status;
    /**
@@ -143,15 +143,19 @@
        if (null == this.status){ return null; }
        switch (this.status){
            case 0:
                return "待申请";
                return "暂停";
            case 1:
                return "申请中";
                return "待测";
            case 2:
                return "已复核";
                return "复核中";
            case 3:
                return "测试中";
            case 4:
                return "完成";
            case 5:
                return "NG移库";
            case 6:
                return "OK移库";
            default:
                return String.valueOf(this.status);
        }