自动化立体仓库 - WMS系统
1
zhangc
2025-03-24 002f10f7d38dc6791d26a69d061e6b17f9980fd0
src/main/java/com/zy/asrs/entity/BasErrLog.java
@@ -131,9 +131,9 @@
    private String error;
    /**
     * 异常情况 1: 未处理  2: 已修复
     * 异常情况 1: 待处理  2: 已修复
     */
    @ApiModelProperty(value= "异常情况 1: 未处理  2: 已修复  ")
    @ApiModelProperty(value= "异常情况 1: 待处理  2: 已修复  ")
    private Integer status;
    /**
@@ -388,7 +388,7 @@
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "未处理";
                return "待处理";
            case 2:
                return "已修复";
            default: