From 75aaca3a95314be8c384df18dba23c661dea742c Mon Sep 17 00:00:00 2001
From: 石广澎 <shiguangpeng@163.com>
Date: 星期一, 27 十一月 2023 19:05:38 +0800
Subject: [PATCH] feat:

---
 consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java |   65 ++++++++++++++++++++++++++++++++
 1 files changed, 65 insertions(+), 0 deletions(-)

diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java b/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java
index df989bb..8d8cd19 100644
--- a/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java
+++ b/consum-model-pojo/src/main/java/com/consum/model/po/LWhFormOutput.java
@@ -36,6 +36,10 @@
     @JsonIgnore
     protected boolean isset_transBusinessId = false;
 
+    private Integer outWarehouseType = null;
+    @JsonIgnore
+    protected boolean isset_outWarehouseType = false;
+
     private String outputCode = null;
     @JsonIgnore
     protected boolean isset_outputCode = false;
@@ -51,6 +55,10 @@
     private String warehouseName = null;
     @JsonIgnore
     protected boolean isset_warehouseName = false;
+
+    private Integer inWarehouseType = null;
+    @JsonIgnore
+    protected boolean isset_inWarehouseType = false;
 
     private Long inWarehouseId = null;
     @JsonIgnore
@@ -87,6 +95,10 @@
     private String beiz = null;
     @JsonIgnore
     protected boolean isset_beiz = false;
+
+    private String outputDoc;
+    @JsonIgnore
+    protected boolean isset_outputDoc = false;
 
     /**
      * 榛樿鏋勯�犲嚱鏁�
@@ -179,6 +191,20 @@
         return this.transBusinessId == null;
     }
 
+    public Integer getOutWarehouseType() {
+        return this.outWarehouseType;
+    }
+
+    public void setOutWarehouseType(Integer outWarehouseType) {
+        this.outWarehouseType = outWarehouseType;
+        this.isset_outWarehouseType = true;
+    }
+
+    @JsonIgnore
+    public boolean isEmptyOutWarehouseType() {
+        return this.outWarehouseType == null;
+    }
+
     public String getOutputCode() {
         return this.outputCode;
     }
@@ -233,6 +259,20 @@
     @JsonIgnore
     public boolean isEmptyWarehouseName() {
         return this.warehouseName == null || this.warehouseName.length() == 0;
+    }
+
+    public Integer getInWarehouseType() {
+        return this.inWarehouseType;
+    }
+
+    public void setInWarehouseType(Integer inWarehouseType) {
+        this.inWarehouseType = inWarehouseType;
+        this.isset_inWarehouseType = true;
+    }
+
+    @JsonIgnore
+    public boolean isEmptyInWarehouseType() {
+        return this.inWarehouseType == null;
     }
 
     public Long getInWarehouseId() {
@@ -361,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() 鏂规硶
      */
@@ -372,10 +426,12 @@
                 .append("businessFormCode=").append(this.businessFormCode)
                 .append("inWarehouseFlowId=").append(this.inWarehouseFlowId)
                 .append("transBusinessId=").append(this.transBusinessId)
+                .append("outWarehouseType=").append(this.outWarehouseType)
                 .append("outputCode=").append(this.outputCode)
                 .append("outputName=").append(this.outputName)
                 .append("warehouseId=").append(this.warehouseId)
                 .append("warehouseName=").append(this.warehouseName)
+                .append("inWarehouseType=").append(this.inWarehouseType)
                 .append("inWarehouseId=").append(this.inWarehouseId)
                 .append("inWarehouseName=").append(this.inWarehouseName)
                 .append("agencyId=").append(this.agencyId)
@@ -414,6 +470,9 @@
         if (this.isset_transBusinessId) {
             l_wh_form_output.setTransBusinessId(this.getTransBusinessId());
         }
+        if (this.isset_outWarehouseType) {
+            l_wh_form_output.setOutWarehouseType(this.getOutWarehouseType());
+        }
         if (this.isset_outputCode) {
             l_wh_form_output.setOutputCode(this.getOutputCode());
         }
@@ -425,6 +484,9 @@
         }
         if (this.isset_warehouseName) {
             l_wh_form_output.setWarehouseName(this.getWarehouseName());
+        }
+        if (this.isset_inWarehouseType) {
+            l_wh_form_output.setInWarehouseType(this.getInWarehouseType());
         }
         if (this.isset_inWarehouseId) {
             l_wh_form_output.setInWarehouseId(this.getInWarehouseId());
@@ -453,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;
     }
 }

--
Gitblit v1.9.1