#
Junjie
昨天 969895c60880294ccb9fef11bdf3500043ee8a14
src/main/java/com/zy/asrs/entity/LocMast.java
@@ -221,4 +221,18 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.errorTime);
    }
    public String getStatus$() {
        if (this.status == null) {
            return null;
        }
        switch (this.status) {
            case 1:
                return "正常";
            case 0:
                return "禁用";
            default:
                return String.valueOf(this.status);
        }
    }
}