自动化立体仓库 - WCS系统
whycq
2023-09-04 0ee358176fc31fdb03f968f4baf1df9bb2e1815f
src/main/java/com/zy/asrs/entity/LocMast.java
@@ -186,14 +186,17 @@
     */
    @ApiModelProperty(value= "消防状态{0:正常,1:报警}")
    @TableField("fire_status")
    private Integer fireStatus;
    private Integer fireStatus=0;
    /**
     * 产品状态{0:无,1:待测,2:测试中;3.静置中;4:静置完成}
     * 产品状态{0:无,1:待测,2:测试中;3.测试完成;4.测试失败;5.静置中;6:静置完成;7:暂停测试;8:紧急出库;}
     */
    @ApiModelProperty(value= "产品状态{0:无,1:待测,2:测试中;3.静置中;4:静置完成}")
    @ApiModelProperty(value= "产品状态{0:无,1:待测,2:测试中;3.测试完成;4.测试失败;5.静置中;6:静置完成;7:暂停测试;8:紧急出库;}")
    @TableField("pack_status")
    private Integer packStatus;
    @ApiModelProperty(value= "通道")
    private Integer channel;
    public String getIoTime$(){
        if (Cools.isEmpty(this.ioTime)){
@@ -314,9 +317,15 @@
            case 3:
                return "测试完成";
            case 4:
                return "静置中";
                return "测试NG";
            case 5:
                return "静置中";
            case 6:
                return "静置完成";
            case 7:
                return "暂停测试";
            case 8:
                return "紧急出库";
            default:
                return String.valueOf(this.packStatus);
        }