zjj
2025-05-06 85e327943d8a241c80a5d9f59c430e2fea955055
rsf-server/src/main/java/com/vincent/rsf/server/manager/entity/AsnOrderItem.java
@@ -189,6 +189,25 @@
    private Integer ntyStatus;
    /**
     * 质检结果
     */
    @ApiModelProperty("质检结果")
    private Short isptResult;
    /**
     * 质检状态
     */
    @ApiModelProperty("质检状态")
    private Short isptStatus;
    @ApiModelProperty("合格数量")
    private Double safeQty;
    @ApiModelProperty("不合格数量")
    private Double disQty;
    /**
     * 状态 1: 正常  0: 冻结
     */
    @ApiModelProperty(value= "状态 1: 正常  0: 冻结  ")
@@ -356,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 "";
        }
    }
}