自动化立体仓库 - WMS系统
#
lsh
2025-04-15 f25bd904560faada2a00e93fbd8abab6be238f9c
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: