#
mrzhssss
2022-09-05 03a853465a52d4150acc261406f3c84b4d0f0b22
src/main/java/zy/cloud/wms/manager/entity/ItemReport.java
@@ -129,6 +129,15 @@
    @ApiModelProperty(value= "1:未生成,2:已生成(不可修改)")
    private Integer status;
    private String issue;
    public String getIssue$(){
        if (this.issue == null || this.issue.equals("")){
            return "无异常";
        }
        return this.issue;
    }
    public String getUpdateTime$(){
        if (Cools.isEmpty(this.updateTime)){
@@ -198,4 +207,31 @@
        }
        return this.installReason;
    }
    public String getDeliverIssue$() {
        if (this.deliverIssue) {
            return "有";
        }
        return "无";
    }
    public String getQualityIssue$() {
        if (this.qualityIssue) {
            return "有";
        }
        return "无";
    }
    public String getDesignIssue$() {
        if (this.designIssue) {
            return "有";
        }
        return "无";
    }
    public String getInstallIssue$() {
        if (this.installIssue) {
            return "有";
        }
        return "无";
    }
}