From 770ede4ca3cfb2861ae90d0662d37be5d85c3918 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期三, 03 五月 2023 18:33:53 +0800
Subject: [PATCH] 优化临时费用创建功能

---
 java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 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 08b2476..51a7fd3 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
@@ -63,6 +63,10 @@
     private String unitCodeName;
     private String miniUnitCodeName;
 
+    private String isFixed;
+    private String isFixedName;
+    private String timesId;
+
     public String getAsId() {
         return asId;
     }
@@ -384,4 +388,28 @@
     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;
+    }
+
+    public String getTimesId() {
+        return timesId;
+    }
+
+    public void setTimesId(String timesId) {
+        this.timesId = timesId;
+    }
 }

--
Gitblit v1.8.0