src/main/java/com/zy/ints/entity/Prdt.java
@@ -76,5 +76,19 @@ // null // 状态[非空] // ); public String getStatus$(){ if (null == this.status){ return null; } switch (this.status){ case 0: return "0(初始状态)"; case 1: return "1(已接收)"; case 2: return "2(异常)"; default: return String.valueOf(this.status); } } }