#
whycq
2023-08-01 320ed3f4782f9662f79ecfe14d2cf3f34dd288c5
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 "无";
    }
}