consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java
@@ -96,6 +96,10 @@
    @JsonIgnore
    protected boolean isset_beiz = false;
    private String outputDoc;
    @JsonIgnore
    protected boolean isset_outputDoc = false;
    /**
     * 默认构造函数
     */
@@ -397,6 +401,20 @@
        return this.beiz == null || this.beiz.length() == 0;
    }
    public String getOutputDoc() {
        return this.outputDoc;
    }
    public void setOutputDoc(String outputDoc) {
        this.outputDoc = outputDoc;
        this.isset_outputDoc = true;
    }
    @JsonIgnore
    public boolean isEmptyOutputDoc() {
        return this.outputDoc == null || this.outputDoc.length() == 0;
    }
    /**
     * 重写 toString() 方法
     */
@@ -497,6 +515,9 @@
        if (this.isset_beiz) {
            l_wh_form_output.setBeiz(this.getBeiz());
        }
        if (this.isset_outputDoc) {
            l_wh_form_output.setOutputDoc(this.getOutputDoc());
        }
        return l_wh_form_output;
    }
}