rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/AsnOrderItem.java
@@ -200,6 +200,13 @@ @ApiModelProperty("质检状态") private Short isptStatus; @ApiModelProperty("合格数量") private Double safeQty; @ApiModelProperty("不合格数量") private Double disQty; /** * 状态 1: 正常 0: 冻结 */ @@ -368,4 +375,22 @@ } } public String getIsptResult$(){ if (null == this.isptResult){ return null; } switch (this.isptResult){ case 0: return "未检"; case 1: return "合格"; case 2: return "不合格"; case 3: return "待定"; case 4: return "部分合格"; default: return ""; } } }