src/main/java/com/zy/asrs/entity/Node.java
@@ -329,17 +329,6 @@ return status; } public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){ case 1: return "正常"; case 0: return "禁用"; default: return String.valueOf(this.status); } } public String getRow1$(){ if (null == this.row1){ return null; } @@ -432,5 +421,10 @@ this.memo = memo; } public String getStatus$() { if (Cools.isEmpty(this.status)){ return ""; } return this.status == 1 ? "正常" : "冻结"; } }