From eaf2992f9f885a03b2bf3afcd9d990b2169ba271 Mon Sep 17 00:00:00 2001
From: cy <1664593601@qq.com>
Date: 星期四, 26 十月 2023 18:12:20 +0800
Subject: [PATCH] feat: 调拨单出库

---
 consum-model-pojo/src/main/java/com/consum/model/po/LWarehouseFlow.java |   24 ++++++++++++------------
 1 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/consum-model-pojo/src/main/java/com/consum/model/po/LWarehouseFlow.java b/consum-model-pojo/src/main/java/com/consum/model/po/LWarehouseFlow.java
index 02d7320..886443a 100644
--- a/consum-model-pojo/src/main/java/com/consum/model/po/LWarehouseFlow.java
+++ b/consum-model-pojo/src/main/java/com/consum/model/po/LWarehouseFlow.java
@@ -28,9 +28,9 @@
     @JsonIgnore
     protected boolean isset_warehouseName = false;
 
-    private Integer lastRecord = null;
+    private Integer thisType = null;
     @JsonIgnore
-    protected boolean isset_lastRecord = false;
+    protected boolean isset_thisType = false;
 
     private Integer businessType = null;
     @JsonIgnore
@@ -115,18 +115,18 @@
         return this.warehouseName == null || this.warehouseName.length() == 0;
     }
 
-    public Integer getLastRecord() {
-        return this.lastRecord;
+    public Integer getThisType() {
+        return this.thisType;
     }
 
-    public void setLastRecord(Integer lastRecord) {
-        this.lastRecord = lastRecord;
-        this.isset_lastRecord = true;
+    public void setThisType(Integer thisType) {
+        this.thisType = thisType;
+        this.isset_thisType = true;
     }
 
     @JsonIgnore
-    public boolean isEmptyLastRecord() {
-        return this.lastRecord == null;
+    public boolean isEmptyThisType() {
+        return this.thisType == null;
     }
 
     public Integer getBusinessType() {
@@ -208,7 +208,7 @@
                 .append("id=").append(this.id)
                 .append("warehouseId=").append(this.warehouseId)
                 .append("warehouseName=").append(this.warehouseName)
-                .append("lastRecord=").append(this.lastRecord)
+                .append("thisType=").append(this.thisType)
                 .append("businessType=").append(this.businessType)
                 .append("businessFormId=").append(this.businessFormId)
                 .append("operatorId=").append(this.operatorId)
@@ -237,8 +237,8 @@
         if (this.isset_warehouseName) {
             l_warehouse_flow.setWarehouseName(this.getWarehouseName());
         }
-        if (this.isset_lastRecord) {
-            l_warehouse_flow.setLastRecord(this.getLastRecord());
+        if (this.isset_thisType) {
+            l_warehouse_flow.setThisType(this.getThisType());
         }
         if (this.isset_businessType) {
             l_warehouse_flow.setBusinessType(this.getBusinessType());

--
Gitblit v1.9.1