From b61309edd49fca3ca2e7572d67b2d67ffe292ce6 Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期二, 12 四月 2022 10:13:37 +0800
Subject: [PATCH] 1、优化访客登记,增加车辆信息2、页面显示问题

---
 java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java |   64 ++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java b/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
index edd057b..ce95633 100644
--- a/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
@@ -23,6 +23,7 @@
     private String asId;
     private String[] asIds;
     private String storeId;
+    private String bId;
     private String resId;
     private String shIdz;
     private String resName;
@@ -41,8 +42,10 @@
     private String price;
     private String originalStock;
     private String rstName;
+    private String parentRstName;
     private String specName;
     private String rstId;
+    private String parentRstId;
     private String rssId;
 
     private String statusCd = "0";
@@ -57,6 +60,11 @@
     private String staffTel;
     private String applyType;
     private String applyTypeName;
+    private String unitCodeName;
+    private String miniUnitCodeName;
+
+    private String isFixed;
+    private String isFixedName;
 
     public String getAsId() {
         return asId;
@@ -339,4 +347,60 @@
     public void setApplyTypeName(String applyTypeName) {
         this.applyTypeName = applyTypeName;
     }
+
+    public String getbId() {
+        return bId;
+    }
+
+    public void setbId(String bId) {
+        this.bId = bId;
+    }
+
+    public String getUnitCodeName() {
+        return unitCodeName;
+    }
+
+    public void setUnitCodeName(String unitCodeName) {
+        this.unitCodeName = unitCodeName;
+    }
+
+    public String getMiniUnitCodeName() {
+        return miniUnitCodeName;
+    }
+
+    public void setMiniUnitCodeName(String miniUnitCodeName) {
+        this.miniUnitCodeName = miniUnitCodeName;
+    }
+
+    public String getParentRstName() {
+        return parentRstName;
+    }
+
+    public void setParentRstName(String parentRstName) {
+        this.parentRstName = parentRstName;
+    }
+
+    public String getParentRstId() {
+        return parentRstId;
+    }
+
+    public void setParentRstId(String parentRstId) {
+        this.parentRstId = parentRstId;
+    }
+
+    public String getIsFixed() {
+        return isFixed;
+    }
+
+    public void setIsFixed(String isFixed) {
+        this.isFixed = isFixed;
+    }
+
+    public String getIsFixedName() {
+        return isFixedName;
+    }
+
+    public void setIsFixedName(String isFixedName) {
+        this.isFixedName = isFixedName;
+    }
 }

--
Gitblit v1.8.0